Lines Matching refs:m_pAdoConnection

58 						 m_pAdoConnection(NULL),  in OConnection()
87 m_pAdoConnection = new WpADOConnection( pCon ); in OConnection()
133 if(m_pAdoConnection) in construct()
135 if(m_pAdoConnection->Open(aDSN,aUID,aPWD,adConnectUnspecified)) in construct()
136 m_pAdoConnection->PutCommandTimeout(nTimeout); in construct()
138 ADOS::ThrowException(*m_pAdoConnection,*this); in construct()
139 if(m_pAdoConnection->get_State() != adStateOpen) in construct()
142 WpADOProperties aProps = m_pAdoConnection->get_Properties(); in construct()
212 WpADOProperties aProps = m_pAdoConnection->get_Properties(); in nativeSQL()
218 aCommand.put_ActiveConnection((IDispatch*)*m_pAdoConnection); in nativeSQL()
234 m_pAdoConnection->BeginTrans(); in setAutoCommit()
236 m_pAdoConnection->RollbackTrans(); in setAutoCommit()
254 m_pAdoConnection->CommitTrans(); in commit()
263 m_pAdoConnection->RollbackTrans(); in rollback()
270 return OConnection_BASE::rBHelper.bDisposed && !m_pAdoConnection->get_State(); in isClosed()
296 m_pAdoConnection->put_Mode(readOnly ? adModeRead : adModeReadWrite); in setReadOnly()
297 ADOS::ThrowException(*m_pAdoConnection,*this); in setReadOnly()
306 return m_pAdoConnection->get_Mode() == adModeRead; in isReadOnly()
314 m_pAdoConnection->PutDefaultDatabase(catalog); in setCatalog()
315 ADOS::ThrowException(*m_pAdoConnection,*this); in setCatalog()
323 return m_pAdoConnection->GetDefaultDatabase(); in getCatalog()
354 m_pAdoConnection->put_IsolationLevel(eIso); in setTransactionIsolation()
355 ADOS::ThrowException(*m_pAdoConnection,*this); in setTransactionIsolation()
365 switch(m_pAdoConnection->get_IsolationLevel()) in getTransactionIsolation()
385 ADOS::ThrowException(*m_pAdoConnection,*this); in getTransactionIsolation()
428 ADORecordset *pRecordset = m_pAdoConnection->getTypeInfo(); in buildTypeInfo()
494 m_pAdoConnection->Close(); in disposing()
502 delete m_pAdoConnection; in disposing()
503 m_pAdoConnection = NULL; in disposing()