podbc_query_database
Execute SQL queries on any DBMS via SQLAlchemy connectivity and retrieve results in JSONL format for streamlined data processing.
Instructions
Execute a SQL query and return results in JSONL format.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | ||
url | No |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"title": "Query",
"type": "string"
},
"url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Url"
}
},
"required": [
"query"
],
"title": "podbc_query_databaseArguments",
"type": "object"
}