write_query
Execute INSERT, UPDATE, or DELETE queries on DBeaver database connections to modify data across 200+ database types without additional configuration.
Instructions
Execute INSERT, UPDATE, or DELETE queries on a specific DBeaver connection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | The ID or name of the DBeaver connection to use | |
query | Yes | The SQL query to execute (INSERT, UPDATE, DELETE) |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "The ID or name of the DBeaver connection to use",
"type": "string"
},
"query": {
"description": "The SQL query to execute (INSERT, UPDATE, DELETE)",
"type": "string"
}
},
"required": [
"connectionId",
"query"
],
"type": "object"
}