Database Connection Strings
π Planned
 Documentation Under Construction
This reference page will provide connection string formats and setup snippets for all built-in database connectors. Most users will configure their database in the Quick Startβthis is for reference.
Planned Content
- β PostgreSQL connection examples (connection string + individual params)
- β MySQL/MariaDB connection examples
- β SQLite connection examples (file path)
- β Snowflake connection examples (account URL + OAuth)
- β BigQuery connection examples (service account JSON)
- β Quick reference table showing all databases at a glance
- β Link to Advanced guide for custom database connectors
Want to contribute or suggest improvements? Open an issue on GitHub
Database Support Matrix
When complete, this will show:
| Database | Module | Connection Format | Status | 
|---|---|---|---|
| PostgreSQL | vanna.integrations.postgres | postgresql://user:pass@host:5432/db | β Production | 
| MySQL | vanna.integrations.mysql | mysql://user:pass@host:3306/db | β Production | 
| SQLite | vanna.integrations.sqlite | sqlite:///path/to/db.sqlite3 | β Dev/Testing | 
| Snowflake | vanna.integrations.snowflake | Account URL + OAuth | β Production | 
| BigQuery | vanna.integrations.bigquery | Service account JSON | β Production | 
Need a different database? See Custom Database Connectors.