User: hr Date: 06/06/19 18:28:03 Modified: /dba/connectivity/source/drivers/flat/ EConnection.cxx
Log: INTEGRATION: CWS warnings01 (1.11.28); FILE MERGED 2005/11/16 12:59:04 fs 1.11.28.1: #i57457# warning free code File Changes: Directory: /dba/connectivity/source/drivers/flat/ ================================================= File [changed]: EConnection.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/flat/EConnection.cxx?r1=1.12&r2=1.13 Delta lines: +10 -6 -------------------- --- EConnection.cxx 29 Mar 2006 12:16:30 -0000 1.12 +++ EConnection.cxx 20 Jun 2006 01:28:00 -0000 1.13 @@ -63,6 +63,9 @@ #ifndef _COMPHELPER_EXTRACT_HXX_ #include <comphelper/extract.hxx> #endif +#ifndef _DBHELPER_DBEXCEPTION_HXX_ +#include <connectivity/dbexception.hxx> +#endif using namespace connectivity::flat; using namespace connectivity::file; @@ -187,11 +190,12 @@ return xStmt; } // -------------------------------------------------------------------------------- -Reference< XPreparedStatement > SAL_CALL OFlatConnection::prepareCall( const ::rtl::OUString& sql ) throw(SQLException, RuntimeException) +Reference< XPreparedStatement > SAL_CALL OFlatConnection::prepareCall( const ::rtl::OUString& /*sql*/ ) throw(SQLException, RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); checkDisposed(OConnection_B::rBHelper.bDisposed); + ::dbtools::throwFeatureNotImplementedException( "XConnection::prepareCall", *this ); return NULL; } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
