5.5. Functions

simplesqlite.append_table(con_src, con_dst, table_name)[source]

Append the table from source to destination.

Parameters:
  • con_src (SimpleSQLite) – Source of the database.
  • con_dst (SimpleSQLite) – Destination of the database.
  • table_name (str) – Table name to copy.
Returns:

True if success.

Return type:

bool

Raises:
simplesqlite.connect_sqlite_db_mem()[source]
Returns:

Instance of a in memory database.

Return type:

SimpleSQLite

Examples:
>>> import simplesqlite
>>> con = simplesqlite.connect_sqlite_db_mem()
>>> con.database_path
':memory:'