summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-02-23 09:51:03 +0000
committerOcke Janssen <oj@openoffice.org>2001-02-23 09:51:03 +0000
commit4747ca97feca170fff14f751920ad3f5f6dcdf1a (patch)
treea0e6d4223725952239d381574dc1de61c0e2b2aa /connectivity
parent390b279f4aa31984cafd10ecd6fe67695a437ffe (diff)
better error message 2nd
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/file/FStatement.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/file/FStatement.cxx b/connectivity/source/drivers/file/FStatement.cxx
index 8b14bfafc022..ba58aec6d262 100644
--- a/connectivity/source/drivers/file/FStatement.cxx
+++ b/connectivity/source/drivers/file/FStatement.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FStatement.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: oj $ $Date: 2001-02-23 10:50:37 $
+ * last change: $Author: oj $ $Date: 2001-02-23 10:51:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -315,7 +315,7 @@ Reference< XResultSet > SAL_CALL OStatement_Base::executeQuery( const ::rtl::OUS
{
if(!aErr.getLength())
{
- aErr = ::rtl::OUString::createFromAscii("Unknown table name in SELECT statement: !");
+ aErr = ::rtl::OUString::createFromAscii("Unknown table name in SELECT statement:\n");
aErr += sql;
}
throw SQLException(aErr,*this,::rtl::OUString::createFromAscii("HY0000"),1000,Any());