| Crates.io | clazydbm |
| lib.rs | clazydbm |
| version | 0.2.0 |
| created_at | 2025-09-15 05:56:17.985864+00 |
| updated_at | 2026-01-02 05:59:03.835326+00 |
| description | A modern Terminal User Interface (TUI) database management tool for PostgreSQL, MySQL, and SQLite |
| homepage | https://github.com/ppdx999/clazydbm |
| repository | https://github.com/ppdx999/clazydbm |
| max_upload_size | |
| id | 1839469 |
| size | 350,762 |
A modern Terminal User Interface (TUI) database management tool for PostgreSQL, MySQL, and SQLite.



cargo install clazydbm
git clone https://github.com/ppdx999/clazydbm.git
cd clazydbm
cargo install --path .
For SQL tab functionality, install the appropriate CLI tools:
# PostgreSQL
pip install pgcli
# MySQL
pip install mycli
# SQLite
pip install litecli
clazydbm
On first run, clazydbm will create a configuration directory in your home folder. Edit the connections file to add your database connections:
Linux/macOS: ~/.config/clazydbm/config.yaml
Windows: %APPDATA%/clazydbm/config.yaml
Example configuration:
conn:
- type: mysql
name: demo-mysql
user: root
password: rootpass
host: 127.0.0.1
port: 3306
database: demo
- type: postgres
name: demo-postgres
user: postgres
password: postgres
host: 127.0.0.1
port: 5432
database: demo
- type: sqlite
name: demo-sqlite
path: dev/sqlite/sample.db
Tab / Shift+Tab: Switch between panels↑↓ / jk: Navigate listsEnter: Select item / Open tableEsc: Go back1: Focus on Records tab2: Focus on SQL tab3: Focus on Properties tab←→ / hl: Scroll columns horizontally[]: Jump 5 columns left/rightCtrl+A / Ctrl+E: Jump to first/last columnPgUp / PgDn: Scroll rows verticallyHome / End: Jump to top/bottomEnter: Launch external CLI tool (pgcli/mycli/litecli)Ctrl+C: Quit applicationclazydbm is built with a modular architecture:
| Database | Status | CLI Integration |
|---|---|---|
| PostgreSQL | ✅ | pgcli |
| MySQL | ✅ | mycli |
| SQLite | ✅ | litecli |
Contributions are welcome! Please feel free to submit a Pull Request.
This project was greatly inspired by gobang by TaKO8Ki. We are grateful for the excellent foundation and design patterns that gobang provided for building terminal-based database management tools.
MIT License - see LICENSE file for details