Lines Matching full:sqlite
98 // From sqlite.org: "The page size must be a power of two greater than or
103 // Sets the number of pages that will be cached in memory by sqlite. The
109 // normal" flag because of some additional requirements sqlite puts on this
143 // for SQLite error codes and database version numbers.
155 // statement - per the SQLite documentation, if no errors are found the
210 // fresh database from scratch, within the constraints of SQLite's
221 // - a SQLite issue occurs which is structural in nature (like the
243 // BeginTransaction()), closes the SQLite database, and poisons the
271 // nested transactions since sqlite can't do nested transactions. The
293 // SQLite supports attaching multiple database files to a single
316 // Like Execute(), but returns the error code given by SQLite.
373 // Returns sqlite's internal ID for the last inserted row. Valid only
377 // Returns sqlite's count of the number of rows modified by the last
384 // Returns the error code associated with the last sqlite operation.
388 // SQLITE_LAST_ERRNO in SQLite documentation.
392 // last sqlite operation.
419 // sqlite3_open. The string can also be sqlite's special ":memory:" string.
451 // A StatementRef is a refcounted wrapper around a sqlite statement pointer.
487 // Returns the sqlite statement if any. If the statement is not active,
522 // Called when a sqlite function returns an error, which is passed
550 // The actual sqlite database. Will be NULL before Init has been called or if
554 // Parameters we'll configure in sqlite before doing anything else. Zero means