summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/file/FPreparedStatement.cxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-02-14 06:19:14 +0000
committerOcke Janssen <oj@openoffice.org>2001-02-14 06:19:14 +0000
commita3d8acff972b4bad17ca1771fbcd1dd3cfbf5d6c (patch)
treec7567ef60ef64866eb7b65ec4a6cf5fea8d54668 /connectivity/source/drivers/file/FPreparedStatement.cxx
parent4c70664f920fb8f605804fb80d8ddaddc0d950d3 (diff)
#83771# correct error msg
Diffstat (limited to 'connectivity/source/drivers/file/FPreparedStatement.cxx')
-rw-r--r--connectivity/source/drivers/file/FPreparedStatement.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/file/FPreparedStatement.cxx b/connectivity/source/drivers/file/FPreparedStatement.cxx
index 14fdfd546dbc..4ce3ae33cac0 100644
--- a/connectivity/source/drivers/file/FPreparedStatement.cxx
+++ b/connectivity/source/drivers/file/FPreparedStatement.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FPreparedStatement.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: oj $ $Date: 2001-01-09 12:41:01 $
+ * last change: $Author: oj $ $Date: 2001-02-14 07:19:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -141,7 +141,7 @@ void OPreparedStatement::construct(const ::rtl::OUString& sql) throw(SQLExcepti
m_aSQLIterator.traverseAll();
const OSQLTables& xTabs = m_aSQLIterator.getTables();
if(xTabs.begin() == xTabs.end())
- throw SQLException(aErr,*this,::rtl::OUString(),0,Any());
+ throw SQLException(::rtl::OUString::createFromAscii("Driver does not support this function!"),*this,::rtl::OUString::createFromAscii("IM001"),0,Any());
// at this moment we support only one table per select statement
Reference< ::com::sun::star::lang::XUnoTunnel> xTunnel(xTabs.begin()->second,UNO_QUERY);