podbc_spasql_query
Execute SPASQL queries on databases via SQLAlchemy connectivity, enabling retrieval of structured results with customizable row limits and timeout settings.
Instructions
Execute a SPASQL query and return results.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_rows | No | ||
query | Yes | ||
timeout | No | ||
url | No |
Input Schema (JSON Schema)
{
"properties": {
"max_rows": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 20,
"title": "Max Rows"
},
"query": {
"title": "Query",
"type": "string"
},
"timeout": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 300000,
"title": "Timeout"
},
"url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Url"
}
},
"required": [
"query"
],
"title": "podbc_spasql_queryArguments",
"type": "object"
}