* feat: add query_history table migration (v5) (Task 1) * feat: add isDestructiveQuery utility (Task 2) * feat: add tabType discriminator and openQueryTab to dbViewerStore (Task 3) * feat: add execute_query command with pagination and query history (Task 4) * feat: add typed wrappers for executeQuery, getQueryHistory, clearQueryHistory (Task 5) * fix: global search bypasses folder scope when filters active (Task 6) * feat: add TagFilterDropdown with checkboxes and empty state (Task 7) * feat: add DbTypeFilterDropdown with checkboxes and clear all (Task 8) * feat: wire TagFilterDropdown/DbTypeFilterDropdown into ActionRow, add inline tag creation (Task 9) * feat: add Name input to GeneralTab for connection editing (Task 10) * feat: add QueryEditor Monaco wrapper with SQL mode and Cmd+Enter (Task 11) * feat: add DestructiveQueryDialog with SQL preview and confirmation (Task 12) * feat: integrate query tabs, Monaco editor, destructive guard into DbViewerScreen (Task 13) * fix: harden moveConnection against race conditions on rapid drags (Task 14) * docs: update AGENTS.md implementation status for Home Screen UX + Query Editor (Task 15) * feat: switch tag filter to OR semantics, add environment filter (F-T16) * feat: add activeEnvironment filter state to uiStore and useFilteredConnections (F-T17) * feat: add environment filter select to Filters dropdown (F-T18) * feat: filter folder cards by tag match or contained connections (F-T19) * fix: keep grid header width to content, border last column * fix: hide select-all checkbox and empty-state when no table open * fix: filter folder cards by any active filter, show global search results (F-T20) * feat: show 'Showing Search Results' breadcrumb with clear button (F-T21) * docs: update README + AGENTS.md for Query Editor, filters, and planned AI integration (BYOK) * feat: refresh indicator with spinning icon and pulse, defer auto-refresh on tab switch * feat: smart default schema selection, refresh schemas on database switch * fix: auto-refresh waits for in-flight refresh to complete before next tick * style: shrink db viewer sidebar nav icons from 20px to 16px * style: shrink db viewer sidebar nav buttons to 32px (8px padding) * style: make Tables panel title xs, regular weight, muted * style: bump Tables panel title back to sm, keep regular weight and muted * feat: export schema diagram as PNG/JPEG/SVG (entire schema or viewport) * chore: lockfile for html-to-image * fix: raise schema visualizer toolbar above legend so export menu isn't hidden * feat: schema export via save dialog, transparent background option, save notification * fix: render nothing in tab bar when no tabs are open * style: reduce tab bar height from 40px to 36px * style: reduce tab bar height to 32px * style: revert tab bar height to 36px * feat: split tab bar with fixed +Query and Changes actions on the right * style: blue play-icon Query button in tab bar * refactor: remove sidebar New Query button (now in tab bar) * style: conditional bottom padding in sidebar toolbar when nothing is below * feat: distinguish table and query tabs with icons * style: tab icons follow active/inactive state, muted colors * feat: query tab toolbar (run/format/dialect badge) + bare transparent editor * style: blue rounded Run Query button in query toolbar * feat: smart platform-aware shortcut tooltip on Run Query (⌘+⏎ / Ctrl+Enter) * style: show only the shortcut in the Run Query tooltip * fix: Cmd+Enter keybinding stale closure; add run pulse to query toolbar; bundle monaco locally (offline) * feat: show placeholder text in empty query editor * feat: SQL autocomplete — keywords + table names from active schema * feat: per-table column autocomplete on 'table.' + docs update * feat: query-variant result toolbar — export/refresh/columns left, smart-unit execution time right * fix: populate execution_time_ms on query results so the toolbar can show time taken * fix: re-measure monaco fonts after async font load to stop cursor drift * feat: resizable + collapsible query results panel * refactor: move results caret onto the resize handle (centered), bottom caret when collapsed * style: thin drag strip with caret on its own centered pill * refactor: remove Queue button from table toolbar (Changes lives in tab bar) * style: changes button becomes bordered rounded icon with count badge * docs: mark tab-bar Changes queue button in AGENTS.md and README
15 KiB
Gridline
A modern, open-source, high-performance database GUI client for PostgreSQL and beyond. Built with Tauri 2.0, Rust, and React — lightweight by design, powerful by default.
Inspired by DB Pro and Beekeeper Studio's best ideas. Freed from their paywalls. No caps on tabs, connections, or saved queries. Deep PostgreSQL tooling (
pg_dump,pg_restore, DB-to-DB sync) that commercial alternatives lock behind paywalls or leave to the CLI.
Why Gridline?
Most database GUI clients either lock essential productivity features behind paywalls or treat PostgreSQL administration as an afterthought. Gridline is different:
| Capability | DB Pro (Free) | Beekeeper (Free) | Gridline |
|---|---|---|---|
| Open tabs | 3 | Unlimited | Unlimited |
| Saved connections | 2 | Unlimited | Unlimited |
| Saved queries | 5 | Unlimited | Unlimited |
| Data export (CSV, JSON, SQL) | ❌ (paid only) | Basic only | JSON, CSV, SQL, Markdown |
| Data import (CSV, JSON) | ❌ (paid only) | ✅ | 🟡 Upcoming |
| pg_dump / pg_restore GUI | ❌ | ❌ (paid only) | First-class UI |
| DB-to-DB sync | ❌ | ❌ | Built-in pipe sync |
| Object explorer depth | Tables, views | Tables, views | Functions, Triggers, Enums, Sequences, Extensions |
| ER diagram / schema visualizer | ❌ (planned) | ❌ (paid only) | ✅ Interactive React Flow |
| Inline cell editing | ✅ | ✅ | 🟡 Upcoming |
| SSH tunneling | 🟡 (likely paid) | ✅ | 🟡 Config UI done |
| OS credential vault | ✅ | ✅ | Keychain / Secret Service |
| Workspace / folder hierarchy | ❌ | ❌ | Multi-level tree + tags |
| Changes queue (stage & commit) | ❌ | ❌ | ✅ Queue → Commit All (tab-bar Changes button with count badge toggles the commit panel) |
| Query history | ✅ (auto-saved) | ✅ | 🟡 Backend done, UI pending |
| AI assistant | ✅ (BYO key) | ❌ (paid only) | 🔮 Planned — BYOK |
| Open source | ❌ | ✅ (GPLv3) | ✅ (MIT) |
| Desktop shell | Native webview | Electron (~250MB) | Tauri 2.0 (~40MB) |
🟡 = In progress or planned. Bold = Gridline's strongest differentiators.
Screenshots
Features
Connection & Workspace Management
- URI Parser — paste
postgres://,mysql://,sqlite://, orredis://connection strings and have all fields auto-populated - Workspace Tree — multi-level hierarchy:
Workspace → Folder → Connection, with color-coded tags (red = Production, green = Local) - Credential Security — passwords stored in the OS keychain (macOS Keychain / Linux Secret Service / Windows Credential Manager), never as plaintext
- Production Safeguards — read-only locks and high-visibility warnings on connections tagged
Production
PostgreSQL Object Explorer
Full tree-view navigation of all native PostgreSQL schema objects:
- Tables & Views — columns, types, defaults, nullability, primary/foreign keys with popover preview
- Functions & Procedures — source code with syntax highlighting and line numbers, argument signatures, return types, overload support
- Triggers & Rules — event bindings with inline definition inspection, color-coded enabled/disabled status
- Sequences & Enums — current values, increments, cycle flags; enum labels in bordered list view
- Extensions — installed extensions with version, schema, and comment
- Schema Visualizer (ER Diagram) — interactive React Flow graph with dagre auto-layout, crow's foot notation (1:1, 1:N, N:M), color-coded relationships, schema selector, zoom controls, collapsible columns (PK/FK/unique-only), cross-schema FK support for PostgreSQL + SQLite
SQL Editor & Query Workbench
- Monaco SQL Editor — lazy-loaded Monaco Editor with SQL syntax highlighting, Cmd/Ctrl+Enter to run
- Custom Query Execution — run arbitrary SQL on PostgreSQL + SQLite via the Rust
execute_querycommand; subquery-wrapped pagination with automatic raw fallback for CTEs/multi-statement SQL - Destructive Query Guard — confirmation dialog for INSERT/UPDATE/DELETE/DROP/ALTER/TRUNCATE/CREATE/REPLACE before execution
- Query Tabs — dedicated query tabs alongside table tabs, results rendered in the same virtualized data grid, close with Cmd/Ctrl+W
- SQL Autocomplete — keyword + table suggestions from the active schema; typing
table.suggests that table's columns (schema introspection, cached per schema) - Multi-Tab Workspace — unlimited named tabs, session persistence across restarts
- Changes Queue — queue INSERT/UPDATE/DELETE changes; preview before committing all. The tab bar's Changes button (checklist icon + pending-count badge) toggles the bottom Commit All panel — the single entry point
- Smart Default Sort — auto-detects
updated_at,created_at,_idcolumns for logical initial sorting - (query history UI dropdown, saved queries/snippets — upcoming)
Data Grid & Schema Browser
- Virtualized Grid — row-level virtualization via
@tanstack/react-virtualhandles 100k+ rows - Column Management — resize with drag handles (double-click to auto-fit), show/hide per column, multi-column sort
- Server-Side Filtering & Sorting — filters and sorts pushed to SQL WHERE/ORDER BY
- Export — JSON, CSV, SQL, Markdown via toolbar
- FK Preview — click a foreign key cell to preview the referenced row
- JSON/JSONB Viewer — popover with formatted/raw tabs and copy button
- Auto-Refresh — configurable interval timer
- (Inline cell editing, visual filter builder, and data import — upcoming)
PostgreSQL Administrative Tools
- Visual Backup —
pg_dumpwrapper with format selector (Plain SQL, Custom, Tar, Directory), file browser, schema filter, no-owner toggle, real-time progress bar - Visual Restore —
pg_restorewrapper with file browser, format, clean toggle, destructive confirmation checkbox - DB-to-DB Sync — pipe
pg_dump→pg_restorebetween two connections with source/target pickers, schema filter, flow indicator
App Portability
- Export — save all workspaces, folders, saved queries, tags, and non-sensitive metadata to a single JSON archive
- Import — restore your exact workspace setup on any machine instantly
Tech Stack
| Layer | Technology | Role |
|---|---|---|
| Desktop Shell | Tauri 2.0 | Native desktop container (~40MB RAM baseline) |
| Backend | Rust + tokio | Async runtime, connection pooling, CLI tool execution |
| Database Drivers | sqlx / tokio-postgres | Pure-Rust async PostgreSQL (MySQL, SQLite to follow) |
| CLI Integration | std::process::Command |
Wraps system pg_dump / pg_restore binaries |
| Frontend | React 19 + TypeScript | Component-based UI |
| Styling | Tailwind CSS | Utility-first, dark mode, glassmorphic design |
| State | Zustand / Jotai | Lightweight client-state for tabs, connections, queries |
| Code Editor | Monaco Editor | IDE-grade SQL editing with Cmd+Enter execution, lazy-loaded |
| Data Grid | TanStack Virtual | Virtualized row rendering for 100k+ rows |
| Local DB | SQLite via rusqlite | User settings, saved queries, workspace state |
Development
Prerequisites
- Rust (latest stable)
- Bun (or Node.js + npm)
- Tauri system dependencies (see guide)
- PostgreSQL client tools (
pg_dump,pg_restore) for admin features
Setup
# Clone
git clone https://github.com/adrianbonpin/gridline.git
cd gridline
# Install frontend dependencies
bun install
# Run in development mode (hot-reload)
bun run tauri dev
# Build for production
bun run tauri build
Project Structure
gridline/
├── src/ # React frontend
│ ├── components/ # Reusable UI components
│ ├── stores/ # Zustand/Jotai state stores
│ ├── hooks/ # Custom React hooks
│ ├── lib/ # Utilities, types, Tauri bindings
│ ├── App.tsx # Root component
│ └── main.tsx # Entry point
├── src-tauri/ # Rust backend
│ ├── src/
│ │ ├── main.rs # Entry point
│ │ ├── lib.rs # Tauri command registration
│ │ ├── db/ # Database connection & pooling
│ │ ├── commands/ # Tauri IPC command handlers
│ │ └── models/ # Data structures & serde types
│ ├── Cargo.toml
│ └── tauri.conf.json
├── public/ # Static assets
├── package.json
├── tsconfig.json
└── vite.config.ts
Architecture
┌──────────────────────────────────────────────────┐
│ Tauri Shell │
│ ┌─────────────────┐ ┌────────────────────────┐ │
│ │ React (WebView)│ │ Rust Backend │ │
│ │ │ │ │ │
│ │ • Monaco Editor │◄──►│ • sqlx/tokio-postgres │ │
│ │ • Glide Grid │IPC│ • Connection pool │ │
│ │ • Tailwind UI │ │ • pg_dump/restore │ │
│ │ • Zustand state │ │ • SQLite (local) │ │
│ │ │ │ • OS Keychain │ │
│ └─────────────────┘ └────────────────────────┘ │
└──────────────────────────────────────────────────┘
│
▼
┌─────────────────────┐
│ PostgreSQL / MySQL │
│ SQLite / Redis │
└─────────────────────┘
Roadmap
✅ Completed
- Phase 1 — Core Shell — Tauri 2.0 + React project, glassmorphic dark-first UI, Zustand state management, SQLite local persistence, OS keychain credentials
- Phase 2 — Connection Management — Rust connection pool (
sqlx/tokio-postgres), PostgreSQL + SQLite browse/query, URI parser with auto-population, SSH/SSL config UI, connection testing for all DB types - Phase 3 — Schema Explorer — Full PostgreSQL
pg_catalog/information_schemaintrospection, object tree (Tables, Views, Functions, Triggers, Enums, Sequences, Extensions), per-type detail views, FK preview popover, JSON/JSONB viewer - Phase 4 — Data Grid & Filters — Virtualized grid (
@tanstack/react-virtual, 100k+ rows), server-side sorting/filtering, column show/hide, column resize, export (JSON/CSV/SQL/Markdown), auto-refresh, pagination - Phase 5 — Admin Tools —
pg_dump/pg_restoreUI wrappers with real-time progress, DB-to-DB sync, backup/restore format selectors - Phase 6 — Schema Visualizer — Interactive ER diagram with React Flow + dagre, crow's foot notation, schema selector, legend, collapsible column views, PostgreSQL + SQLite support
- Home Screen & Organization — Connection cards by folder, folders CRUD, tags CRUD with colors, global search (Cmd+K), import/export connections (JSON), bulk select/delete, DB type filter, demo SQLite database
- Query Editor (Core) — Monaco SQL editor with Cmd+Enter execution,
execute_queryRust command (PostgreSQL + SQLite, subquery pagination with raw fallback), query tabs in the DB viewer, destructive query confirmation dialog,query_historypersistence backend - Home Screen Filters — Tag filter with OR semantics, folder cards matching tags or containing matching connections, DB type filter hiding empty folders, environment filter (All/Production/Staging/Development/None), global search across all folders with "Showing Search Results" breadcrumb + Clear
🟡 In Progress / Upcoming
- Query Editor (Polish) — SQL autocomplete (keywords, tables, and per-table columns), query history UI dropdown, saved queries
- SSH/SSL Runtime — SSH tunnel via
ssh2crate, SSL/TLS config passed tosqlx/tokio-postgres - Inline Cell Editing — Edit cells directly in the data grid
- Data Import — CSV, JSON import with column mapping
🔮 Future
- Multi-DB Support — MySQL browsing, Redis key browser, full MySQL/SQLite/Redis parity with PostgreSQL
- Query Workbench — Multiple result sets, query favorites/pinning, visual query builder
- Deeper PostgreSQL — Indexes, constraints, materialized views, stored procedure view, user/role management
- Collaboration — Team workspaces, shared connections, query sharing
- Notebook Reports — SQL-backed markdown reports with embedded results
- AI Integration (BYOK) — Bring-Your-Own-Key AI assistant: natural-language → SQL generation, query explanations, schema summaries, error suggestions. Key stored in OS keychain; only user's chosen provider sees SQL/text.
License
MIT — see LICENSE for details.
Built with ♥ for developers who believe powerful tools should be free.