execute
Perform INSERT, UPDATE, or DELETE operations on a MySQL database by executing SQL queries with optional parameters. Simplify database interactions for efficient data manipulation.
Instructions
Execute an INSERT, UPDATE, or DELETE query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | No | An optional array of parameters (as strings) to bind to the SQL query placeholders (e.g., ?). | |
sql | Yes | The SQL query string (INSERT, UPDATE, DELETE) to execute. |