Lines Matching refs:m_pConnection
52 OTools::ThrowException(m_pConnection,x,m_aStatementHandle,SQL_HANDLE_STMT,*this)
82 ,m_pConnection(_pConnection) in OStatement_Base()
88 m_pConnection->acquire(); in OStatement_Base()
89 m_aStatementHandle = m_pConnection->createStatementHandle(); in OStatement_Base()
126 if (m_pConnection) in disposing()
128 m_pConnection->freeStatementHandle(m_aStatementHandle); in disposing()
129 m_pConnection->release(); in disposing()
130 m_pConnection = NULL; in disposing()
152 …if ( m_pConnection && !m_pConnection->isAutoRetrievingEnabled() && rType == ::getCppuType( (const … in queryInterface()
164 if ( m_pConnection && !m_pConnection->isAutoRetrievingEnabled() ) in getTypes()
176 …OSL_ENSURE( m_pConnection && m_pConnection->isAutoRetrievingEnabled(),"Illegal call here. isAutoRe… in getGeneratedValues()
178 if ( m_pConnection ) in getGeneratedValues()
180 ::rtl::OUString sStmt = m_pConnection->getTransformedGeneratedStatement(m_sSqlStatement); in getGeneratedValues()
184 m_xGeneratedStatement = m_pConnection->createStatement(); in getGeneratedValues()
197 …OTools::ThrowException(m_pConnection,N3SQLCancel(m_aStatementHandle),m_aStatementHandle,SQL_HANDLE… in cancel()
474 m_pConnection->throwGenericSQLException(STR_NO_RESULTSET,*this); in executeQuery()
485 return (Reference< XConnection >)m_pConnection; in getConnection()