run_query
Execute SQL queries on connected databases to retrieve, update, or manage data across PostgreSQL, MySQL, and SQLite systems through a unified interface.
Instructions
Run SQL query on the connected database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionID | Yes | The connection ID | |
query | Yes | The SQL queries to execute |
Input Schema (JSON Schema)
{
"properties": {
"connectionID": {
"description": "The connection ID",
"type": "string"
},
"query": {
"description": "The SQL queries to execute",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"connectionID",
"query"
],
"type": "object"
}