Features How It Works Databases Download
Camino icon

Your database,
powered by AI

Connect to PostgreSQL, MySQL, and SQLite. Write SQL with an intelligent editor. Let AI do the heavy lifting.

macOS Windows Linux
Camino — analytics_db
Connections
analytics_db
production_pg
staging_mysql
Scripts
revenue_report.sql
user_metrics.sql
1-- Monthly revenue breakdown
2SELECT
3  date_trunc('month', created_at) AS month,
4  SUM(amount) AS revenue,
5  COUNT(*) AS orders
6FROM transactions
7WHERE status = 'completed'
8GROUP BY 1 ORDER BY 1 DESC
9LIMIT 12;
Results 128 rows · 24ms
month revenue orders
2025-03-01$284,9201,847
2025-02-01$261,3301,692
2025-01-01$243,1051,534
2024-12-01$298,4402,103

Everything you need

A focused toolkit for exploring, querying, and understanding your data.

Multi-Database Support

Connect to PostgreSQL, MySQL, and SQLite databases. Browse schemas, tables, and columns in a visual tree.

PostgreSQL
MySQL
SQLite

SQL Editor

Professional-grade SQL editing with syntax highlighting, auto-completion, and multi-statement execution.

AI Chat Interface

Ask questions in plain English. AI generates SQL, executes it, and explains results in a conversational flow.

Show me the top 5 customers by revenue
Here are your top customers by total revenue: SELECT name, SUM(amount) AS total FROM customers JOIN orders USING(customer_id) GROUP BY name ORDER BY total DESC LIMIT 5;

Data Visualization

Instantly visualize query results with charts. Bar charts, line graphs, and more built right in.

Jan
Feb
Mar
Apr
May

Up and running in minutes

Three steps to smarter database workflows.

1

Connect

Add your database credentials. PostgreSQL, MySQL, and SQLite supported out of the box.

2

Set Up AI

Run the AI Setup Wizard. It introspects your schema and builds context so AI understands your data.

3

Ask & Explore

Write SQL or chat with AI. Get instant results, charts, and insights from your data.

PostgreSQL
MySQL
SQLite

Ready to take Camino
for a spin?

Free and open source. Download the latest release from GitHub.

Download from GitHub