read_list¶
-
getml.sqlite3.
read_list
(conn, table_name, data)[source]¶ Reads data into an sqlite3 table.
- Args:
- conn:
A sqlite3 connection created by
connect()
.- table_name (str):
The name of the table to write to.
- data (List[List[Object]]):
The data to insert into the table. Every list represents one row to be read into the table.