Multi-dialect SQL Builder for n8n, powered by @foxschema/core catalog discovery.
Supported dialects: PostgreSQL, MySQL, MariaDB, SQL Server, Oracle.
Db2 is not supported. Native ibm_db cannot install through n8n’s community-node installer. For Db2, use n8n-nodes-db2-sql-builder with a custom Docker image.
- In n8n: Settings → Community nodes → Install
- Package name:
n8n-nodes-fox-schema-sql-builder - Restart n8n if required
This package does not ship database drivers. Install succeeds on normal n8n hosts (including environments that cannot compile native addons).
Install only the driver(s) you need on the n8n host (or bake them into your image):
| Dialect | npm package |
|---|---|
| PostgreSQL | pg |
| MySQL / MariaDB | mysql2 |
| SQL Server | mssql |
| Oracle | oracledb (+ Oracle Instant Client on the host) |
Example (self-hosted):
cd ~/.n8n
npm install pg mysql2 mssql
# Oracle additionally needs Instant Client / thick mode setup- Lists tables, views, procedures, and functions
- Tables / views → selectable columns
- Procedures / functions → IN / OUT / INOUT parameters
- Get / Create / Update / Delete with visual SELECT, WHERE, GROUP BY, HAVING, ORDER BY, LIMIT
- Call Procedure / Call Function (one routine per node)
- Parameter modes: Form (catalog IN/INOUT list), From Item (map incoming JSON by name + optional overrides), JSON object
- OUT parameters are not captured yet (bound as null). Fan-out multiple calls with separate nodes or Split in Batches.
- Multi-statement workflows with bindings, preview/dry-run, optional transactions
Create a Fox Schema Database credential:
- Dialect (postgres / mysql / mariadb / sqlserver / oracle)
- Host, port, database/service, username, password
- Schema (optional; defaults:
public,dbo, database name, or Oracle username) - SSL options
Restrict n8n database credentials to the least privilege needed. Keep Allow Unsafe SQL off unless every workflow editor is trusted.
pnpm install
pnpm build
pnpm test
pnpm validate:n8npnpm build bundles a CJS copy of @foxschema/core from the sibling ../foxSchema/packages/core tree (or node_modules/@foxschema/core when published) into dist/vendor/.
Reuse the sibling foxSchema Docker demo (demo_a):
# Start + seed Postgres (and MySQL by default)
pnpm seed:foxschema
# Or a single dialect / everything
pnpm seed:foxschema postgres
pnpm seed:foxschema all
# Run live catalog + query checks (skips dialects that are down)
pnpm test:e2e
# Fail instead of skip when a dialect is unreachable
FOX_E2E=1 pnpm test:e2eSeed credentials match foxSchema compose defaults (foxuser / foxpass, schema demo_a). Override with FOX_E2E_PG_*, FOX_E2E_MYSQL_*, etc. if needed.
Uses 5nickels/n8n-nodes-db2-sql-builder:latest (linux/amd64) and mounts this package under N8N_CUSTOM_EXTENSIONS:
pnpm test:n8n
# → http://127.0.0.1:5678
# Fox Schema SQL Builder + baked-in Db2 SQL Builder both availableThe compose file joins the external foxschema_default network so credentials can use container DNS:
| Dialect | Host | Port | Database | User / Pass | Schema |
|---|---|---|---|---|---|
| PostgreSQL | foxschema-postgres |
5432 | foxdb |
foxuser / foxpass |
demo_a |
| MySQL | foxschema-mysql |
3306 | demo_a |
foxuser / foxpass |
demo_a |
Do not put your n8n login (email@…) into the Fox Schema Database credential — that credential is for the SQL database only.
After editing the credential, click Test then reopen the Table/View list. Catalog errors now surface in the UI instead of a silent “No results”.
Stop with docker compose down.