module documentation

SQLite backend for the sqlite3 module in the standard library.

Class DatabaseWrapper No class docstring; 0/8 class variable, 2/13 methods documented
Class SQLiteCursorWrapper Django uses "format" style placeholders, but pysqlite2 uses "qmark" style. This fixes it -- but note that if you want to use a literal "%s" in a query, you'll need to use "%%s".
Function decoder Convert bytestrings from Python's sqlite3 interface to a regular string.
Constant FORMAT_QMARK_REGEX Undocumented
def decoder(conv_func): (source)

Convert bytestrings from Python's sqlite3 interface to a regular string.

FORMAT_QMARK_REGEX = (source)

Undocumented

Value
_lazy_re_compile('(?<!%)%s')