Squire SQL
sqlValidate SQLite and Postgres schemas, queries, and migrations in isolated disposable sandboxes to catch database errors before deployment.
Instructions
Run SQLite or Postgres schema, query, and migration validation in a fresh disposable database sandbox.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dialect | Yes | SQL dialect: sqlite or postgres-16. | |
| explain | No | Request an execution plan when the dialect supports it. | |
| file | No | Path to a SQL file containing statements to apply. | |
| query | No | Inline SQL query to execute after schema setup. | |
| query_file | No | Path to a query file to execute after schema setup. | |
| schema | No | Path to a schema file to apply before the query. | |
| timeout | No | SQL timeout in seconds. |