Lines Matching defs:database
165 database: object
176 pysqlite_connection_init_impl(pysqlite_Connection *self, PyObject *database,
183 if (PySys_Audit("sqlite3.connect", "O", database) < 0) {
188 if (!PyUnicode_FSConverter(database, &bytes)) {
199 // Create and configure SQLite database object.
281 // database, so sqlite3_close() should always return SQLITE_OK.
492 Close the database connection.
536 "Cannot operate on a closed database.");
546 Commit any pending transaction to the database.
1190 // Errors are not set on the database connection, so we cannot
1834 Abort any pending database operation.
1862 Returns iterator to the dump of the database in an SQL text format.
1919 Makes a backup of the database.
2081 Which database to serialize.
2083 Serialize a database into a byte string.
2085 For an ordinary on-disk database file, the serialization is just a copy of the
2086 disk file. For an in-memory database or a "temp" database, the serialization is
2087 the same sequence of bytes which would be written to disk if that database
2099 /* If SQLite has a contiguous memory representation of the database, we can
2130 The serialized database content.
2134 Which database to reopen with the deserialization.
2136 Load a serialized database.
2138 The deserialize interface causes the database connection to disconnect from the
2139 target database, and then reopen it as an in-memory database based on the given
2142 The deserialize interface will fail with SQLITE_BUSY if the database is
2158 * - Tell SQLite that it is permitted to grow the resulting database
2243 /* Commit failed; try to rollback in order to unlock the database.
2315 PyDoc_STR("SQLite database connection object.");