Lines Matching full:database
77 // The tipical usage is to centralize the code designed to handle database
107 // The database is opened by calling Open[InMemory](). Any uncommitted
114 // Sets the page size that will be used when creating a new database. This
128 // Call to put the database in exclusive locking mode. There is no "back to
133 // Exclusive mode means that the database is not unlocked at the end of each
153 // Initializes the SQL connection for a temporary in-memory database. There
154 // will be no associated file on disk, and the initial database will be
158 // Returns trie if the database has been successfully opened.
161 // Closes the database. This is automatically performed on destruction for
162 // you, but this allows you to close the database early. You must not call
164 // an uninitialized or already-closed database.
168 // If you expect to soon use a substantial portion of the database, this
175 // database, as it openes a transaction on the meta table to force the
176 // database to be initialized. You should feel free to initialize the meta
178 // database if it exists, and if it doesn't exist, the database won't
258 // statement executed. Will be 0 if no statement has executed or the database
345 // Like |Execute()|, but retries if the database is locked.
348 // The actual sqlite database. Will be NULL before Init has been called or if