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: Trueif success.Return type: Raises: - simplesqlite.TableNotFoundError – If the table not found in the database.
- ValueError – If attribute of the table is different from each other.