sqlite3 utilities.
Drop the arrays table from the database.
path (Path) – Path to the SQLite database file.
Path
None
Delete an array from the arrays table.
name (str) – Name of the array to delete.
str
Insert or update an array in the arrays table.
name (str) – Name of the array to insert or update.
kargs (ArrayLike) – Keyword arguments whose values contain the array data.
ArrayLike
Read an array from the arrays table.
name (str) – Name of the array to read.
Dictionary containing the array data.
dict[str, NDArray]
dict
NDArray