Lines Matching refs:OConnection

54 OConnection::OConnection(const SQLHANDLE _pDriverHandle,ODBCDriver*	_pDriver)  in OConnection()  function in OConnection
55 : OSubComponent<OConnection, OConnection_BASE>((::cppu::OWeakObject*)_pDriver, this) in OConnection()
70 OConnection::~OConnection() in ~OConnection()
83 void SAL_CALL OConnection::release() throw() in release()
88 oslGenericFunction OConnection::getOdbcFunction(sal_Int32 _nIndex) const in getOdbcFunction()
94 SQLRETURN OConnection::OpenConnection(const ::rtl::OUString& aConnectStr,sal_Int32 nTimeOut, sal_Bo… in OpenConnection()
174 SQLRETURN OConnection::Construct(const ::rtl::OUString& url,const Sequence< PropertyValue >& info) … in Construct()
277 IMPLEMENT_SERVICE_INFO(OConnection, "com.sun.star.sdbc.drivers.odbc.OConnection", "com.sun.star.sdb…
280 Reference< XStatement > SAL_CALL OConnection::createStatement( ) throw(SQLException, RuntimeExcept… in createStatement()
290 Reference< XPreparedStatement > SAL_CALL OConnection::prepareStatement( const ::rtl::OUString& sql … in prepareStatement()
300 Reference< XPreparedStatement > SAL_CALL OConnection::prepareCall( const ::rtl::OUString& /*sql*/ )… in prepareCall()
306 ::rtl::OUString SAL_CALL OConnection::nativeSQL( const ::rtl::OUString& sql ) throw(SQLException, R… in nativeSQL()
317 void SAL_CALL OConnection::setAutoCommit( sal_Bool autoCommit ) throw(SQLException, RuntimeExceptio… in setAutoCommit()
329 sal_Bool SAL_CALL OConnection::getAutoCommit( ) throw(SQLException, RuntimeException) in getAutoCommit()
341 void SAL_CALL OConnection::commit( ) throw(SQLException, RuntimeException) in commit()
350 void SAL_CALL OConnection::rollback( ) throw(SQLException, RuntimeException) in rollback()
359 sal_Bool SAL_CALL OConnection::isClosed( ) throw(SQLException, RuntimeException) in isClosed()
366 Reference< XDatabaseMetaData > SAL_CALL OConnection::getMetaData( ) throw(SQLException, RuntimeExc… in getMetaData()
381 void SAL_CALL OConnection::setReadOnly( sal_Bool readOnly ) throw(SQLException, RuntimeException) in setReadOnly()
392 sal_Bool SAL_CALL OConnection::isReadOnly() throw(SQLException, RuntimeException) in isReadOnly()
398 void SAL_CALL OConnection::setCatalog( const ::rtl::OUString& catalog ) throw(SQLException, Runtime… in setCatalog()
410 ::rtl::OUString SAL_CALL OConnection::getCatalog( ) throw(SQLException, RuntimeException) in getCatalog()
425 void SAL_CALL OConnection::setTransactionIsolation( sal_Int32 level ) throw(SQLException, RuntimeEx… in setTransactionIsolation()
437 sal_Int32 SAL_CALL OConnection::getTransactionIsolation( ) throw(SQLException, RuntimeException) in getTransactionIsolation()
451 Reference< ::com::sun::star::container::XNameAccess > SAL_CALL OConnection::getTypeMap( ) throw(SQ… in getTypeMap()
460 void SAL_CALL OConnection::setTypeMap( const Reference< ::com::sun::star::container::XNameAccess >&… in setTypeMap()
466 void SAL_CALL OConnection::close( ) throw(SQLException, RuntimeException) in close()
477 Any SAL_CALL OConnection::getWarnings( ) throw(SQLException, RuntimeException) in getWarnings()
482 void SAL_CALL OConnection::clearWarnings( ) throw(SQLException, RuntimeException) in clearWarnings()
486 void OConnection::buildTypeInfo() throw( SQLException) in buildTypeInfo()
591 void OConnection::disposing() in disposing()
597 …for (::std::map< SQLHANDLE,OConnection*>::iterator aConIter = m_aConnections.begin();aConIter != m… in disposing()
600 ::std::map< SQLHANDLE,OConnection*>().swap(m_aConnections); in disposing()
609 OConnection* OConnection::cloneConnection() in cloneConnection()
611 return new OConnection(m_pDriverHandleCopy,m_pDriver); in cloneConnection()
614 SQLHANDLE OConnection::createStatementHandle() in createStatementHandle()
616 OConnection* pConnectionTemp = this; in createStatementHandle()
623 OConnection* pConnection = cloneConnection(); in createStatementHandle()
639 …m_aConnections.insert(::std::map< SQLHANDLE,OConnection*>::value_type(aStatementHandle,pConnection… in createStatementHandle()
645 void OConnection::freeStatementHandle(SQLHANDLE& _pHandle) in freeStatementHandle()
647 ::std::map< SQLHANDLE,OConnection*>::iterator aFind = m_aConnections.find(_pHandle); in freeStatementHandle()