SQLIT(1)

NAME

sqlitA user friendly TUI for SQL databases. Written in python. Supports SQL server, Mysql, PostreSQL, SQLite, Turso and more.

SYNOPSIS

$pipx install sqlit-tui

INFO

4.0k stars
99 forks
0 views

DESCRIPTION

A user friendly TUI for SQL databases. Written in python. Supports SQL server, Mysql, PostreSQL, SQLite, Turso and more.

README

sqlit logo

The lazygit of SQL databases

Connect and query your database from your terminal in seconds.

GitHub Stars Python License

pipx install sqlit-tui

Buy Me a Coffee


Connect

Supports all major databases: SQL Server, PostgreSQL, MySQL, SQLite, MariaDB, FirebirdSQL, Oracle, DuckDB, CockroachDB, ClickHouse, Snowflake, Supabase, CloudFlare D1, Turso, Athena, BigQuery, RedShift, IBM Db2, SAP HANA, Teradata, Trino, Presto and Apache Flight SQL.

Database Providers

Query

Syntax highlighting. History. Vim-style keybindings.

Query History

Results

Load millions of rows. Inspect data, filter by content, fuzzy search.

Filter results

Docker Discovery

Automatically finds running database containers. Press 'Enter' to connect, sqlit figures out the details for you.

Docker Discovery


Features

Connection manager: Save and switch connections without CLI args

Just run sqlit: No CLI config needed, pick a connection and go

Multi-database support: PostgreSQL, MySQL, SQLite, SQL Server, and 10+ more

Docker integration: Auto-detect running database containers

Cloud CLI integration: Easily browse and connect to your external databases through Azure, AWS and GCP CLI's

SSH tunnels: Connect to remote databases securely with password or key auth

Secure credentials: Passwords stored in your OS keyring

Vim-style editing: Modal editing for terminal purists

Query history: Searchable, per-connection history

Filter results: Fuzzy search through millions of rows

Context-aware help: Keybindings shown on screen

Browse databases: Tables, views, procedures, indexes, triggers, sequences

Autocomplete: Sophisticated SQL completion engine for tables, columns, and procedures

CLI mode: Execute SQL from the command line

Themes: Rose Pine, Tokyo Night, Nord, Gruvbox

Dependency wizard: Auto-install missing drivers


Motivation

Throughout my career, the undesputed truth was that heavy GUI's like SSMS was the only respectable way to access a database. It didn't matter that I wasn't a DBA, or that I didn't need complex performance graphs. I was expected to install a gigabyte-heavy behemoth that took ages to launch all for the mere purpose of running a few queries to update and view a couple of rows.

When I switched to Linux, I was suddenly unable to return to the devil I know, and I asked myself: how do I access my data now?

The popular answer was VS Code's SQL extension. But why should we developers launch a heavy Electron app designed for coding just to execute SQL?

I had recently grown fond of Terminal UI's for their speed and keybinding focus. I looked for SQL TUIs, but the options were sparse. The ones I found lacked the user-friendliness and immediate "pick-up-and-go" nature of tools I loved, like lazygit, and I shortly returning to vscode sql extension.

Something wasn't right. I asked myself, why is it that running SQL queries can't be enjoyable? So I created sqlit.

sqlit is for the developer who just wants to query their database with a user friendly UI without their RAM being eaten alive. It is a lightweight, beautiful, and keyboard-driven TUI designed to make accessing your data enjoyable, fast and easy like it should be-- all from inside your favorite terminal.


Installation

# pipx (recommended)
pipx install sqlit-tui

uv

uv tool install sqlit-tui

pip

pip install sqlit-tui

Arch Linux (AUR)

yay -S sqlit

Nix (flake)

nix run github:Maxteabag/sqlit

Usage

sqlit

The keybindings are shown at the bottom of the screen.

Try it without a database

Want to explore the UI without connecting to a real database? Run with mock data:

sqlit --mock=sqlite-demo

CLI

sqlit -c "MyConnection"
sqlit --connection "MyConnection"

Run a query

sqlit query -c "MyConnection" -q "SELECT * FROM Users"

Output as CSV or JSON

sqlit query -c "MyConnection" -q "SELECT * FROM Users" --format csv sqlit query -c "MyConnection" -f "script.sql" --format json

Create connections for different databases

sqlit connections add mssql --name "MySqlServer" --server "localhost" --auth-type sql sqlit connections add postgresql --name "MyPostgres" --server "localhost" --username "user" --password "pass" sqlit connections add mysql --name "MyMySQL" --server "localhost" --username "user" --password "pass" sqlit connections add cockroachdb --name "MyCockroach" --server "localhost" --port "26257" --database "defaultdb" --username "root" sqlit connections add sqlite --name "MyLocalDB" --file-path "/path/to/database.db" sqlit connections add turso --name "MyTurso" --server "libsql://your-db.turso.io" --password "your-auth-token" sqlit connections add firebird --name "MyFirebird" --server "localhost" --username "user" --password "pass" --database "employee" sqlit connections add athena --name "MyAthena" --athena-region-name "us-east-1" --athena-s3-staging-dir "s3://my-bucket/results/" --athena-auth-method "profile" --athena-profile-name "default" sqlit connections add athena --name "MyAthenaKeys" --athena-region-name "us-east-1" --athena-s3-staging-dir "s3://my-bucket/results/" --athena-auth-method "keys" --username "ACCESS_KEY" --password "SECRET_KEY"

Connect via SSH tunnel

sqlit connections add postgresql --name "RemoteDB" --server "db-host" --username "dbuser" --password "dbpass"
--ssh-enabled --ssh-host "ssh.example.com" --ssh-username "sshuser" --ssh-auth-type password --ssh-password "sshpass"

Temporary (not saved) connection

sqlit connect sqlite --file-path "/path/to/database.db"

Connect via URL - scheme determines database type (postgresql://, mysql://, sqlite://, etc.)

sqlit postgresql://user:pass@localhost:5432/mydb sqlit mysql://root@localhost/testdb sqlit sqlite:///path/to/database.db

Save a connection via URL

sqlit connections add --url dbtype://user:pass@host/db --name "MyDB"

Provider-specific CLI help

sqlit connect -h sqlit connect supabase -h sqlit connections add -h sqlit connections add supabase -h

Manage connections

sqlit connections list sqlit connections delete "MyConnection"

Keybindings

KeyAction
iEnter INSERT mode
EscBack to NORMAL mode
e / q / rFocus Explorer / Query / Results
sSELECT TOP 100 from table
hQuery history
dClear query
nNew query (clear all)
yCopy query (when query editor is focused)
v / y / Y / aView cell / Copy cell / Copy row / Copy all
Ctrl+QQuit
?Help

Vim Motions (Query Editor, NORMAL mode)

Use with operators like y, d, c (e.g. dw, y$).

MotionAction
h / j / k / lMove cursor left / down / up / right
w / WNext word / WORD
b / BPrevious word / WORD
0 / $Line start / end
gg / GFile start / end
f{c} / F{c}Find char forward / backward
t{c} / T{c}Till char forward / backward
%Matching bracket

Commands Menu (<space>)

KeyAction
<space>cConnect to database
<space>xDisconnect
<space>zCancel running query
<space>eToggle Explorer
<space>fToggle Maximize
<space>tChange theme
<space>hHelp
<space>qQuit

Autocomplete triggers automatically in INSERT mode. Use Tab to accept.


Configuration

Connections and settings are stored in ~/.sqlit/.

FAQ

How are sensitive credentials stored?

Connection details are stored in ~/.sqlit/connections.json, but passwords are stored in your OS keyring when available (macOS Keychain, Windows Credential Locker, Linux Secret Service).

How does sqlit compare to Harlequin, Lazysql, etc.?

sqlit is inspired by lazygit - you can just jump in and there's no need for external documentation. The keybindings are shown at the bottom of the screen and the UI is designed to be intuitive without memorizing shortcuts.

Key differences:

  • No need for external documentation - Sqlit embrace the "lazy" approach in that a user should be able to jump in and use it right away intuitively. There should be no setup instructions. If python packages are required for certain adapters, sqlit will help you install them as you need them.
  • No CLI config required - Just run sqlit and pick a connection from the UI
  • Lightweight - While Lazysql or Harlequin offer more features, I experienced that for the vast majority of cases, all I needed was a simple and fast way to connect and run queries. Sqlit is focused on doing a limited amount of things really well.

Inspiration

sqlit is built with Textual and inspired by:

  • lazygit - Simple TUI for git
  • lazysql - Terminal-based SQL client with connection manager

Contributing

See CONTRIBUTING.md for development setup, testing, and CI steps.

Driver Reference

Most of the time you can just run sqlit and connect. If a Python driver is missing, sqlit will show (and often run) the right install command for your environment.

DatabaseDriver packagepipxpip / venv
SQLite(built-in)(built-in)(built-in)
PostgreSQL / CockroachDB / Supabasepsycopg2-binarypipx inject sqlit-tui psycopg2-binarypython -m pip install psycopg2-binary
SQL Servermssql-pythonpipx inject sqlit-tui mssql-pythonpython -m pip install mssql-python
MySQLPyMySQLpipx inject sqlit-tui PyMySQLpython -m pip install PyMySQL
MariaDBmariadbpipx inject sqlit-tui mariadbpython -m pip install mariadb
Oracleoracledbpipx inject sqlit-tui oracledbpython -m pip install oracledb
DuckDBduckdbpipx inject sqlit-tui duckdbpython -m pip install duckdb
ClickHouseclickhouse-connectpipx inject sqlit-tui clickhouse-connectpython -m pip install clickhouse-connect
Tursolibsqlpipx inject sqlit-tui libsqlpython -m pip install libsql
Cloudflare D1requestspipx inject sqlit-tui requestspython -m pip install requests
Snowflakesnowflake-connector-pythonpipx inject sqlit-tui snowflake-connector-pythonpython -m pip install snowflake-connector-python
Firebirdfirebirdsqlpipx inject sqlit-tui firebirdsqlpython -m pip install firebirdsql
Athenapyathenapipx inject sqlit-tui pyathenapython -m pip install pyathena
Apache Arrow Flight SQLadbc-driver-flightsqlpipx inject sqlit-tui adbc-driver-flightsqlpython -m pip install adbc-driver-flightsql

SSH Tunnel Support

SSH tunnel functionality requires additional dependencies. Install with the ssh extra:

# pipx
pipx install 'sqlit-tui[ssh]'

uv

uv tool install 'sqlit-tui[ssh]'

pip

pip install 'sqlit-tui[ssh]'

If you try to create an SSH connection without these dependencies, sqlit will detect this and show you the exact command to install them for your environment.


Star History

Star History Chart


License

MIT

SEE ALSO

clihub3/4/2026SQLIT(1)