summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/calc/CConnection.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 00:17:49 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 00:17:49 +0000
commit81d50829237c0e8403635bc5b26c2735bf542bb6 (patch)
tree9dc86b8b499dc30ec912d46e609ace5fc266a4f7 /connectivity/source/drivers/calc/CConnection.cxx
parent3169ceaf96ddbe9542dba508efb5cb4f5cc78ee5 (diff)
INTEGRATION: CWS warnings01 (1.10.30); FILE MERGED
2005/11/16 12:58:52 fs 1.10.30.1: #i57457# warning free code
Diffstat (limited to 'connectivity/source/drivers/calc/CConnection.cxx')
-rw-r--r--connectivity/source/drivers/calc/CConnection.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/connectivity/source/drivers/calc/CConnection.cxx b/connectivity/source/drivers/calc/CConnection.cxx
index 079858d067fd..c5cd39cafb8c 100644
--- a/connectivity/source/drivers/calc/CConnection.cxx
+++ b/connectivity/source/drivers/calc/CConnection.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: CConnection.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: obo $ $Date: 2006-03-29 12:14:29 $
+ * last change: $Author: hr $ $Date: 2006-06-20 01:17:49 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -69,6 +69,9 @@
#ifndef INCLUDED_SVTOOLS_PATHOPTIONS_HXX
#include <svtools/pathoptions.hxx>
#endif
+#ifndef _DBHELPER_DBEXCEPTION_HXX_
+#include <connectivity/dbexception.hxx>
+#endif
using namespace connectivity::calc;
using namespace connectivity::file;
@@ -248,12 +251,13 @@ Reference< XPreparedStatement > SAL_CALL OCalcConnection::prepareStatement( cons
// --------------------------------------------------------------------------------
-Reference< XPreparedStatement > SAL_CALL OCalcConnection::prepareCall( const ::rtl::OUString& sql )
+Reference< XPreparedStatement > SAL_CALL OCalcConnection::prepareCall( const ::rtl::OUString& /*sql*/ )
throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
+ ::dbtools::throwFeatureNotImplementedException( "XConnection::prepareCall", *this );
return NULL;
}
// -----------------------------------------------------------------------------