Module reference¶
Module functions¶
sqlite7.connect(path, **kwargs)¶
Open a database connection and return a Database object.
Common keyword arguments include:
timeoutisolation_levelcached_statementsurirow_factory
sqlite7.connect_async(path, **kwargs)¶
Return an AsyncDatabase instance backed by the native SQLite engine and integrated with asyncio.
sqlite7.complete_statement(statement)¶
Return True when a SQL string appears complete according to SQLite’s parser.
Module constants¶
PARSE_DECLTYPESPARSE_COLNAMES
Main classes¶
DatabaseTableAsyncDatabaseAsyncTableStatementResultRow
See the API pages for the full method surface.