11.2.3. database_mod

current_flow_allostery.functions.database_mod.abort_ro(*args, **kwargs)[source]

the terrible consequences for trying to flush to the db

current_flow_allostery.functions.database_mod.create_connection(db_file)[source]

create a connection to the specified SQLite database file (db_file) :param db_file: database file :return: connection object (or None if not successful)

current_flow_allostery.functions.database_mod.create_new_db(db_file)[source]

create a database connection to an SQLite database

current_flow_allostery.functions.database_mod.create_table(conn, table_creation_sql_statement)[source]

create a table using the table_creation_sql_statement :param conn: Connection object :param table_creation_sql_statement: an sqlite CREATE TABLE statement :return: