Module base
SQLite backend for the sqlite3 module in the standard library.
source linkClasses
Functions
▷ def decoder(conv_func) Convert bytestrings from Python's sqlite3 interface to a regular string.
▷ def list_aggregate(function) Return an aggregate class that accumulates values in a list and applies the provided function to the data.
▶ def none_guard(func) Decorator that returns None if any of the arguments to the decorated
function are None. Many SQL functions return NULL if any of their arguments
are NULL. This decorator simplifies the implementation of this for the
custom functions registered below.