Home | History | Annotate | Download | only in sql

Lines Matching defs:StatementRef

62 Connection::StatementRef::StatementRef()
67 Connection::StatementRef::StatementRef(Connection* connection,
74 Connection::StatementRef::~StatementRef() {
80 void Connection::StatementRef::Close() {
224 scoped_refptr<Connection::StatementRef> Connection::GetCachedStatement(
238 scoped_refptr<StatementRef> statement = GetUniqueStatement(sql);
244 scoped_refptr<Connection::StatementRef> Connection::GetUniqueStatement(
247 return new StatementRef(this, NULL); // Return inactive statement.
254 return new StatementRef(this, NULL);
256 return new StatementRef(this, stmt);
391 void Connection::StatementRefCreated(StatementRef* ref) {
396 void Connection::StatementRefDeleted(StatementRef* ref) {