connect_database
Connect to a SQLite database file to enable interaction with its data, including querying, listing tables, and describing schemas for efficient database management.
Instructions
Connect to a SQLite database file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the SQLite database file | |
readonly | No | Open database in read-only mode |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the SQLite database file",
"type": "string"
},
"readonly": {
"default": false,
"description": "Open database in read-only mode",
"type": "boolean"
}
},
"required": [
"path"
],
"type": "object"
}