HomeSort by relevance Sort by last modified time
    Searched defs:StatementRef (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/sql/
connection.cc 176 Connection::StatementRef::StatementRef(Connection* connection,
186 Connection::StatementRef::~StatementRef() {
192 void Connection::StatementRef::Close(bool forced) {
696 scoped_refptr<Connection::StatementRef> Connection::GetCachedStatement(
710 scoped_refptr<StatementRef> statement = GetUniqueStatement(sql);
716 scoped_refptr<Connection::StatementRef> Connection::GetUniqueStatement(
722 return new StatementRef(NULL, NULL, poisoned_);
732 return new StatementRef(NULL, NULL, false)
    [all...]
connection.h 84 class StatementRef; // Forward declaration, see real one below.
330 // If the |sql| has an error, an invalid, inert StatementRef is returned (and
348 scoped_refptr<StatementRef> GetCachedStatement(const StatementID& id,
360 scoped_refptr<StatementRef> GetUniqueStatement(const char* sql);
413 // Statement accesses StatementRef which we don't want to expose to everybody
451 // A StatementRef is a refcounted wrapper around a sqlite statement pointer.
460 // The Connection may revoke a StatementRef in some error cases, so callers
462 class SQL_EXPORT StatementRef : public base::RefCounted<StatementRef> {
472 StatementRef(Connection* connection, sqlite3_stmt* stmt, bool was_valid)
    [all...]

Completed in 724 milliseconds