save_dict_to_sqlite
Save dictionary, list of dictionaries, or JSON string data into a SQLite database table, with configurable database path and table name.
Instructions
将字典或JSON字符串保存到SQLite数据库中。
参数: data (dict or list of dict or str): 字典、列表字典,或JSON字符串。 db_path (str): SQLite 数据库文件路径。 table_name (str): 要创建的表名。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| db_path | No | data.db | |
| table_name | No | my_table |