Connections
Zebflow can connect to external databases for querying and data management.
Supported drivers
- PostgreSQL — full query support
- MySQL — full query support
- SjTable (Sekejap) — built-in document store
Managing connections
Connections are configured in project settings. Each connection has:
- Slug — unique identifier (e.g.,
main-db) - Driver — database type
- Connection string — DSN or host/port/credentials
Using in pipelines
| trigger.webhook --path /api/search --method GET
| table.query --connection main-db --query "SELECT * FROM users WHERE name LIKE '%{{ $input.q }}%'"
Using in the assistant
The built-in assistant can query connections directly using the run_db_query tool, with schema introspection via get_table_columns.