Lines Matching refs:m_pConnection

62 	,m_pConnection(_pConnection)  in OCommonStatement()
67 m_pConnection->acquire(); in OCommonStatement()
99 if (m_pConnection) { in disposing()
100 m_pConnection->release(); in disposing()
101 m_pConnection = NULL; in disposing()
186 const ::rtl::OUString sSqlStatement = m_pConnection->transFormPreparedStatement( sql ); in execute()
190 …success = cppStatement->execute(OUStringToOString(sSqlStatement, m_pConnection->getConnectionSetti… in execute()
192 mysqlc_sdbc_driver::translateAndThrow(e, *this, m_pConnection->getConnectionEncoding()); in execute()
207 const ::rtl::OUString sSqlStatement = m_pConnection->transFormPreparedStatement(sql); in executeQuery()
211 …et > rset(cppStatement->executeQuery(OUStringToOString(sSqlStatement, m_pConnection->getConnection… in executeQuery()
212 xResultSet = new OResultSet(this, rset.get(), m_pConnection->getConnectionEncoding()); in executeQuery()
215 mysqlc_sdbc_driver::translateAndThrow(e, *this, m_pConnection->getConnectionEncoding()); in executeQuery()
231 return ((Reference< XConnection >)m_pConnection); in getConnection()
294 const ::rtl::OUString sSqlStatement = m_pConnection->transFormPreparedStatement(sql); in executeUpdate()
298 …affectedRows = cppStatement->executeUpdate(OUStringToOString(sSqlStatement, m_pConnection->getConn… in executeUpdate()
300 mysqlc_sdbc_driver::translateAndThrow(e, *this, m_pConnection->getConnectionEncoding()); in executeUpdate()
318 xResultSet = new OResultSet(this, rset.get(), m_pConnection->getConnectionEncoding()); in getResultSet()
321 mysqlc_sdbc_driver::translateAndThrow(e, *this, m_pConnection->getConnectionEncoding()); in getResultSet()