Lines Matching refs:database
6 pysqlite_connection_init_impl(pysqlite_Connection *self, PyObject *database,
16 static const char * const _keywords[] = {"database", "timeout", "detect_types", "isolation_level", "check_same_thread", "factory", "cached_statements", "uri", NULL};
22 PyObject *database;
35 database = fastargs[0];
100 return_value = pysqlite_connection_init_impl((pysqlite_Connection *)self, database, timeout, detect_types, isolation_level, check_same_thread, factory, cache_size, uri);
250 "Close the database connection.\n"
270 "Commit any pending transaction to the database.\n"
765 "Abort any pending database operation.");
783 "Returns iterator to the dump of the database in an SQL text format.");
802 "Makes a backup of the database.");
944 "Serialize a database into a byte string.\n"
947 " Which database to serialize.\n"
949 "For an ordinary on-disk database file, the serialization is just a copy of the\n"
950 "disk file. For an in-memory database or a \"temp\" database, the serialization is\n"
951 "the same sequence of bytes which would be written to disk if that database\n"
1005 "Load a serialized database.\n"
1008 " The serialized database content.\n"
1010 " Which database to reopen with the deserialization.\n"
1012 "The deserialize interface causes the database connection to disconnect from the\n"
1013 "target database, and then reopen it as an in-memory database based on the given\n"
1016 "The deserialize interface will fail with SQLITE_BUSY if the database is\n"