podbc_execute_query
Execute SQL queries and retrieve results in JSONL format. Configure max rows, parameters, and connection URL for precise data extraction via SQLAlchemy connectivity.
Instructions
Execute a SQL query and return results in JSONL format.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| max_rows | No | ||
| params | No | ||
| query | Yes | ||
| url | No | 
Input Schema (JSON Schema)
{
  "properties": {
    "max_rows": {
      "default": 100,
      "title": "Max Rows",
      "type": "integer"
    },
    "params": {
      "anyOf": [
        {
          "additionalProperties": true,
          "type": "object"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Params"
    },
    "query": {
      "title": "Query",
      "type": "string"
    },
    "url": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Url"
    }
  },
  "required": [
    "query"
  ],
  "title": "podbc_execute_queryArguments",
  "type": "object"
}