Lines Matching refs:StatementRef
160 Connection::StatementRef::StatementRef(Connection* connection,
170 Connection::StatementRef::~StatementRef() {
176 void Connection::StatementRef::Close(bool forced) {
670 scoped_refptr<Connection::StatementRef> Connection::GetCachedStatement(
684 scoped_refptr<StatementRef> statement = GetUniqueStatement(sql);
690 scoped_refptr<Connection::StatementRef> Connection::GetUniqueStatement(
696 return new StatementRef(NULL, NULL, poisoned_);
706 return new StatementRef(NULL, NULL, false);
708 return new StatementRef(this, stmt, true);
711 scoped_refptr<Connection::StatementRef> Connection::GetUntrackedStatement(
715 return new StatementRef(NULL, NULL, poisoned_);
722 return new StatementRef(NULL, NULL, false);
724 return new StatementRef(NULL, stmt, true);
994 void Connection::StatementRefCreated(StatementRef* ref) {
999 void Connection::StatementRefDeleted(StatementRef* ref) {