diff options
author | Ocke Janssen <oj@openoffice.org> | 2001-04-27 09:08:14 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2001-04-27 09:08:14 +0000 |
commit | 8e289a55c727eebbbd4f2d9b8fdaf066c01c5ebf (patch) | |
tree | 68f23606888b26ee20405e096ffc9c6de7dc869f /connectivity/source/drivers/flat/EConnection.cxx | |
parent | 52478ca938fdd8629076bd33ce24e9e1cecdd657 (diff) |
UnoTunnel impl for the connections
Diffstat (limited to 'connectivity/source/drivers/flat/EConnection.cxx')
-rw-r--r-- | connectivity/source/drivers/flat/EConnection.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/connectivity/source/drivers/flat/EConnection.cxx b/connectivity/source/drivers/flat/EConnection.cxx index 105140a08e81..ab09a4fa163e 100644 --- a/connectivity/source/drivers/flat/EConnection.cxx +++ b/connectivity/source/drivers/flat/EConnection.cxx @@ -2,9 +2,9 @@ * * $RCSfile: EConnection.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: fs $ $Date: 2001-03-15 08:53:33 $ + * last change: $Author: oj $ $Date: 2001-04-27 10:08:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -196,7 +196,7 @@ Reference< XDatabaseMetaData > SAL_CALL OFlatConnection::getMetaData( ) throw(S Reference< XStatement > SAL_CALL OFlatConnection::createStatement( ) throw(SQLException, RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); - if (OConnection_BASE::rBHelper.bDisposed) + if (OConnection_B::rBHelper.bDisposed) throw DisposedException(); OFlatStatement* pStmt = new OFlatStatement(this); @@ -208,7 +208,7 @@ Reference< XStatement > SAL_CALL OFlatConnection::createStatement( ) throw(SQLE Reference< XPreparedStatement > SAL_CALL OFlatConnection::prepareStatement( const ::rtl::OUString& sql ) throw(SQLException, RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); - if (OConnection_BASE::rBHelper.bDisposed) + if (OConnection_B::rBHelper.bDisposed) throw DisposedException(); OFlatPreparedStatement* pStmt = new OFlatPreparedStatement(this,m_aTypeInfo); @@ -222,7 +222,7 @@ Reference< XPreparedStatement > SAL_CALL OFlatConnection::prepareStatement( cons Reference< XPreparedStatement > SAL_CALL OFlatConnection::prepareCall( const ::rtl::OUString& sql ) throw(SQLException, RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); - if (OConnection_BASE::rBHelper.bDisposed) + if (OConnection_B::rBHelper.bDisposed) throw DisposedException(); return NULL; } |