diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 00:19:23 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 00:19:23 +0000 |
commit | 45e85dc334949e6e01aeafa8cb81a9da2d3ebd60 (patch) | |
tree | 839bce784089d73887532c1e310c104507b93226 /connectivity/source/drivers/dbase/DConnection.cxx | |
parent | 43654e2dd3962aacb21749fe23034a660af1e94e (diff) |
INTEGRATION: CWS warnings01 (1.15.30); FILE MERGED
2005/11/16 12:58:54 fs 1.15.30.1: #i57457# warning free code
Diffstat (limited to 'connectivity/source/drivers/dbase/DConnection.cxx')
-rw-r--r-- | connectivity/source/drivers/dbase/DConnection.cxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/connectivity/source/drivers/dbase/DConnection.cxx b/connectivity/source/drivers/dbase/DConnection.cxx index bbf5aeb449ad..1df29d815e2a 100644 --- a/connectivity/source/drivers/dbase/DConnection.cxx +++ b/connectivity/source/drivers/dbase/DConnection.cxx @@ -4,9 +4,9 @@ * * $RCSfile: DConnection.cxx,v $ * - * $Revision: 1.16 $ + * $Revision: 1.17 $ * - * last change: $Author: obo $ $Date: 2006-03-29 12:14:40 $ + * last change: $Author: hr $ $Date: 2006-06-20 01:19:23 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -63,6 +63,9 @@ #ifndef _TOOLS_DEBUG_HXX #include <tools/debug.hxx> #endif +#ifndef _DBHELPER_DBEXCEPTION_HXX_ +#include <connectivity/dbexception.hxx> +#endif using namespace connectivity::dbase; using namespace connectivity::file; @@ -147,8 +150,9 @@ Reference< XPreparedStatement > SAL_CALL ODbaseConnection::prepareStatement( con return pStmt; } // -------------------------------------------------------------------------------- -Reference< XPreparedStatement > SAL_CALL ODbaseConnection::prepareCall( const ::rtl::OUString& sql ) throw(SQLException, RuntimeException) +Reference< XPreparedStatement > SAL_CALL ODbaseConnection::prepareCall( const ::rtl::OUString& /*sql*/ ) throw(SQLException, RuntimeException) { + ::dbtools::throwFeatureNotImplementedException( "XConnection::prepareCall", *this ); return NULL; } // ----------------------------------------------------------------------------- |