class documentation

class PySQLite2Connector(DBTestConnector): (source)

View In Hierarchy

Connector that uses pysqlite's SQLite database support.

Method can_connect Return true if this database is present on the system and can be used in a test.
Method getPoolArgs Return a tuple (args, kw) of list and keyword arguments that need to be passed to ConnectionPool to create a connection to this database.
Method startDB Take any steps needed to bring database up.
Constant TEST_PREFIX Undocumented
Class Variable escape_slashes Undocumented
Class Variable num_iterations Undocumented
Instance Variable database Undocumented

Inherited from DBTestConnector:

Method makePool Create a connection pool with additional keyword arguments.
Method setUp Undocumented
Method stopDB Bring database down, if needed.
Constant DB_DIR Undocumented
Constant DB_NAME Undocumented
Constant DB_PASS Undocumented
Constant DB_USER Undocumented
Class Variable can_clear Undocumented
Class Variable can_rollback Undocumented
Class Variable early_reconnect Undocumented
Class Variable nulls_ok Undocumented
Class Variable test_failures Undocumented
Class Variable trailing_spaces_ok Undocumented
def can_connect(self): (source)

Return true if this database is present on the system and can be used in a test.

def getPoolArgs(self): (source)

Return a tuple (args, kw) of list and keyword arguments that need to be passed to ConnectionPool to create a connection to this database.

def startDB(self): (source)

Take any steps needed to bring database up.

TEST_PREFIX: str = (source)

Undocumented

Value
'pysqlite2'
database = (source)

Undocumented