Lines Matching refs:m_aConnectionHandle

75 	if ( SQL_NULL_HANDLE != m_aConnectionHandle )  in ~OConnection()
76 N3SQLFreeHandle( SQL_HANDLE_DBC, m_aConnectionHandle ); in ~OConnection()
77 m_aConnectionHandle = SQL_NULL_HANDLE; in ~OConnection()
98 if (m_aConnectionHandle == SQL_NULL_HANDLE) in OpenConnection()
111 …N3SQLSetConnectAttr(m_aConnectionHandle,SQL_ATTR_LOGIN_TIMEOUT,(SQLPOINTER)nTimeOut,SQL_IS_UINTEGE… in OpenConnection()
117 nSQLRETURN = N3SQLDriverConnect(m_aConnectionHandle, in OpenConnection()
130 nSQLRETURN = N3SQLDriverConnect(m_aConnectionHandle, in OpenConnection()
148 OTools::GetInfo(this,m_aConnectionHandle,SQL_DATA_SOURCE_READ_ONLY,aVal,*this,getTextEncoding()); in OpenConnection()
158 OTools::GetInfo(this,m_aConnectionHandle,SQL_DRIVER_ODBC_VER,sVersion,*this,getTextEncoding()); in OpenConnection()
169 …N3SQLSetConnectAttr(m_aConnectionHandle,SQL_ATTR_AUTOCOMMIT,(SQLPOINTER)SQL_AUTOCOMMIT_ON,SQL_IS_I… in OpenConnection()
176 m_aConnectionHandle = SQL_NULL_HANDLE; in Construct()
181 N3SQLAllocHandle(SQL_HANDLE_DBC,m_pDriverHandleCopy,&m_aConnectionHandle); in Construct()
182 if(m_aConnectionHandle == SQL_NULL_HANDLE) in Construct()
271 OTools::ThrowException(this,nSQLRETURN,m_aConnectionHandle,SQL_HANDLE_DBC,*this,sal_False); in Construct()
313 …NativeSql(m_aConnectionHandle,(SDB_ODBC_CHAR*)aSql.getStr(),aSql.getLength(),(SDB_ODBC_CHAR*)pOut,… in nativeSQL()
323 OTools::ThrowException(this,N3SQLSetConnectAttr(m_aConnectionHandle, in setAutoCommit()
326 m_aConnectionHandle,SQL_HANDLE_DBC,*this); in setAutoCommit()
336 OTools::ThrowException(this,N3SQLGetConnectAttr(m_aConnectionHandle, in getAutoCommit()
337 SQL_ATTR_AUTOCOMMIT, &nOption,0,0),m_aConnectionHandle,SQL_HANDLE_DBC,*this); in getAutoCommit()
347 …s::ThrowException(this,N3SQLEndTran(SQL_HANDLE_DBC,m_aConnectionHandle,SQL_COMMIT),m_aConnectionHa… in commit()
356 …::ThrowException(this,N3SQLEndTran(SQL_HANDLE_DBC,m_aConnectionHandle,SQL_ROLLBACK),m_aConnectionH… in rollback()
374 xMetaData = new ODatabaseMetaData(m_aConnectionHandle,this); in getMetaData()
388 …N3SQLSetConnectAttr(m_aConnectionHandle,SQL_ATTR_ACCESS_MODE,reinterpret_cast< SQLPOINTER >( readO… in setReadOnly()
389 m_aConnectionHandle,SQL_HANDLE_DBC,*this); in setReadOnly()
406 …N3SQLSetConnectAttr(m_aConnectionHandle,SQL_ATTR_CURRENT_CATALOG,(SDB_ODBC_CHAR*)aCat.getStr(),SQL… in setCatalog()
407 m_aConnectionHandle,SQL_HANDLE_DBC,*this); in setCatalog()
419 …N3SQLGetConnectAttr(m_aConnectionHandle,SQL_ATTR_CURRENT_CATALOG,(SDB_ODBC_CHAR*)pCat,(sizeof pCat… in getCatalog()
420 m_aConnectionHandle,SQL_HANDLE_DBC,*this); in getCatalog()
431 OTools::ThrowException(this,N3SQLSetConnectAttr(m_aConnectionHandle, in setTransactionIsolation()
434 m_aConnectionHandle,SQL_HANDLE_DBC,*this); in setTransactionIsolation()
446 N3SQLGetConnectAttr(m_aConnectionHandle,SQL_ATTR_TXN_ISOLATION,&nTxn,sizeof nTxn,&nValueLen), in getTransactionIsolation()
447 m_aConnectionHandle,SQL_HANDLE_DBC,*this); in getTransactionIsolation()
603 N3SQLDisconnect(m_aConnectionHandle); in disposing()