dbQuery
Execute SQL queries on PostgreSQL databases to retrieve and manage data through database connections.
Instructions
Execute a SQL query on a PostgreSQL database
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| connectionString | Yes | Database connection string | |
| query | Yes | SQL query to execute |
Input Schema (JSON Schema)
{
"properties": {
"connectionString": {
"description": "Database connection string",
"type": "string"
},
"query": {
"description": "SQL query to execute",
"type": "string"
}
},
"required": [
"connectionString",
"query"
],
"type": "object"
}