Download Tablen download

Native, fast, and secure SQL & NoSQL client for macOS with 20 databases supported. Install in minutes, start querying.

Tablen v1.31.0 · macOSTablen.dmg — Download
ArchitectureApple Silicon
v1.31.044.2 MBJuly 16, 2026Notarized + signed
or with package manager
🍺Homebrew Cask newfastest updates
$brew install --cask tablen

System Requirements

No runtime, no Electron wrapper. Native Swift + real libpq driver.

Operating System
macOS 14 Sonoma+
v1.18 LTS for Ventura
Processor
Apple Silicon / Intel
Universal 2 binary
Disk space
~100 MB
cache +50 MB
Signature
Developer ID + Notarized
Team ID: TABLEN99

Ready in seconds

Three steps to get started with Tablen.

1
Download the app
Click the download button above to get the latest version of Tablen.
Tablen-1.31.0-arm64.dmg
2
Drag to Applications
Open the DMG file and drag Tablen to your Applications folder.
Tablen.app/Applications
3
Connect and query
Launch Tablen, add your first database connection, and start querying.
● DEV·postgres://orders
Notarized by Apple. Opens through macOS Gatekeeper without warnings. Verify SHA-256 and GPG signatures via checksums.txt.View checksums

Previous versions

latest 5 releases
VersionNotesSizemacOSDateDownload
v1.31.0 ### New - **Open and save `.sql` files.** Open a query file with ⌘O, save with ⌘S, Save As with ⌘⇧S. The tab shows the file name with an unsaved-changes dot, and closing a tab with unsaved edits asks before discarding them. An opened file is visible and editable even before you connect to a database — pick a connection when you're ready to run. ### Fixed - **Grid edits are escaped correctly on MySQL.** Editing or inserting a value containing a backslash (e.g. a Windows path like `C:\Users`) could break the generated statement on MySQL/MariaDB/TiDB. Values are now escaped per the connection's dialect. - **Open tabs survive a crash.** Your tab layout was only saved when the app lost focus, so a hard crash lost it. Tabs are now saved continuously in the background. - **English UI no longer shows Turkish in the editor.** The right-click menu and the inline-edit card had a few hard-coded Turkish labels that leaked to English users; they're localized now.44.2 MBmacOS 14.0+Jul 16, 2026 Download
v1.30.0 ### New - **Schema-aware autocomplete.** The editor now completes real table and column names as you type — including through aliases. Write `FROM users u` and `u.` suggests users' columns; table names complete in `FROM`/`JOIN`, keywords match your engine's dialect. Suggestions are off for non-SQL engines (Redis, MongoDB), which keep their own command hints. - **See what Cmd+Return will run.** When the editor holds multiple statements, the one your cursor is in is now gently highlighted — so you know exactly which statement Cmd+Return will execute before you press it. The highlight is computed from the same logic that runs the query, so it can never point at the wrong block. - **Vim keybindings.** Settings ▸ Editor ▸ "Vim keybindings" turns on modal editing in the query editor (normal/insert/visual, hjkl, dd, ciw, …), with a NORMAL/INSERT/VISUAL indicator. Off by default; toggles live without reopening tabs. ### Fixed - **Crash and error reports work again from Turkey.** Tablen's diagnostics endpoint was network-blocked for users on Turkish ISPs, so opt-in error reports never reached us — every release through 1.29.0 was affected. Reports now route through our own domain and arrive correctly. (Only sent if you opted in; still never includes your SQL, hostnames, or credentials.) - **The editor is rebuilt on solid ground.** The query editor's engine was reconstructed from clean, buildable source with a full behavior-parity pass — no user-visible change by itself, but it's what made the three features above possible and prevents a class of silent editor regressions going forward.44.2 MBmacOS 14.0+Jul 12, 2026 Download
v1.29.0 ### New - **Add Row.** Insert rows straight from the table browser — a form sheet with per-column fields, a "Set to NULL" toggle, and blank-means-DEFAULT semantics so auto-increment keys and server defaults just work. No more hand-writing INSERT statements. - **Connection errors that help.** Failed connections (both Test Connection and real connects) now append an actionable hint — "Check that the server is running on host:port", "Verify your username and password", SSL/firewall/database-name guidance — and the error alert gains an **Edit Connection…** button that takes you straight back to the form. - **Claude Desktop integration now actually ships.** The `tablen-mcp` server binary is embedded in the app. Every release through 1.28.0 silently shipped without it, so the "Add to Claude Desktop" flow never worked on installed copies. Release builds now fail if the binary is missing, so this can't regress. - **Editor placeholders.** An empty editor shows an engine-specific example (SQL for relational engines, `GET key` / `HGETALL key` for Redis) that disappears the moment you type. - **Import, discoverable.** The empty sidebar now offers "Import from another app…" directly — previously the import wizard hid solely under File ▸ Import Connections…. ### Changed - **Run All stops at the first error** instead of continuing silently and leaving a half-applied migration behind. The failure message says exactly how many statements were skipped. Prefer the old behavior? Settings ▸ "Run All continues after a failed statement". - **Stop now cancels on the server too.** Stopping a query used to only stop *waiting* — the statement kept running (and burning resources) server-side. PostgreSQL, MySQL, and SQLite now receive a real server-side cancel; other engines keep the client-side behavior. - **Saving a new connection also connects.** Matching the TablePlus/Beekeeper habit — Save no longer leaves the new connection idle and unselected. - **Double-click no longer disconnects.** Double-clicking an already-connected connection used to disconnect it, punishing muscle memory from other clients. Disconnect now lives in the hover button and context menu only. - **One source of truth for shortcuts.** Menus, the Keyboard Shortcuts sheet, Command Palette hints, and toolbar tooltips all read the same catalog — conflicting bindings were resolved and documented combos can no longer drift from the real ones. - **Welcome screen tells the truth.** "21 Database Engines", the AI assistant, and the real current shortcuts — instead of the 3-engine copy from 2024. ### Fixed - **Row edits target the right row.** UPDATE/DELETE from the grid now build their WHERE clause from the table's *real* primary key column(s) — including composite keys — instead of assuming the first SELECTed column is the PK. `SELECT name, id FROM …` could previously edit the wrong row. - **Web Inspector disabled in production.** Right-click ▸ Inspect Element on the query editor was enabled in shipped builds; it's now Debug-only. - **MCP bridge port no longer locale-formatted.** Turkish systems displayed port 7301 as "7.301".44.1 MBmacOS 14.0+Jul 11, 2026 Download
v1.28.0 ### New - **DynamoDB support (Experimental).** Tablen's 21st engine — connect to AWS DynamoDB (or DynamoDB Local) with your access key, browse tables with their partition/sort keys, and query with PartiQL (SELECT/INSERT/UPDATE/DELETE). Built from scratch with hand-rolled AWS Signature V4 — no SDK, fully native. - **Safer query execution.** Cmd+Return now runs your selection — or, when the editor holds multiple statements, just the statement your cursor is in. No more accidentally running a destructive UPDATE sitting below the SELECT you were testing. Run everything explicitly with the new **Cmd+Shift+Return** (Run All Statements). - **System theme.** The theme picker gains a "System" option that follows macOS Light/Dark Mode — and switches live when the OS appearance changes. - **Editor zoom.** Zoom In / Zoom Out / Actual Size in the View menu (Cmd+Plus / Cmd+Minus / Cmd+0) adjust the editor font size. - **Connection form now catches port/type mismatches.** Type Oracle's 1521 while PostgreSQL is selected and Tablen suggests switching — one click fixes it (previously this failed with an opaque connection error). - **Local AI, documented.** New "Local AI" guide: run the AI assistant fully on your Mac with Ollama, LM Studio, or Apple Intelligence — your schema never leaves your machine. ### Fixed - **English UI no longer shows Turkish strings.** About 30 interface strings (plugin manager, dialogs, AI settings) appeared in Turkish for English users; all localized correctly now, with the Turkish translations preserved. - **Custom AI provider safety.** A mistyped custom base URL used to silently fall back to api.openai.com — sending your API key to the wrong host and "testing" against the wrong endpoint. It now fails with a clear error instead.43.9 MBmacOS 14.0+Jul 9, 2026 Download
v1.27.1 ### Fixed - **Oracle connections are now reliable.** Fixed three wire-protocol bugs in the native Oracle driver that surfaced against Oracle Autonomous Database: - Intermittent **"TNS packet too large"** connection failures — a row-data framing misalignment that could desync the packet stream on connect. - **Multi-statement desync** — running several queries in a row on one connection could fail the second and later statements with spurious ORA-01013/ORA-01009 errors. - **Large statement overflow** — statements over ~1KB could fail with ORA-03120 due to an integer overflow in the request encoding. All three are verified end-to-end against a live Oracle Autonomous Database 19c (connect, browse tables/columns, run back-to-back queries), including correct UTF-8 (AL32UTF8) text.43.8 MBmacOS 14.0+Jul 7, 2026 Download
v1.27.0 ### Added - **Three new native database drivers** — written from scratch over the raw wire protocols, no external dependencies: - **Oracle Database.** Full Oracle Net (TNS) stack with **TCPS/TLS encryption** and **O5LOGON authentication** (12c PBKDF2 and 11g verifiers). Verified end-to-end against a live Oracle Autonomous Database 19c: connect, run SQL, and browse tables/columns. Supports NUMBER/VARCHAR2/CHAR/DATE/RAW/ROWID and surfaces real ORA-xxxxx errors. - **Microsoft SQL Server.** Native TDS 7.4 driver with **TLS encryption** (TDS-wrapped Secure Transport), pre-login negotiation, LOGIN7 auth, and the full token stream for queries and metadata. - **Firebird.** Native wire-protocol driver with **SRP-6a authentication** and Arc4 wire encryption, XDR codec, verified against a live server. - **Streaming import for large files.** CSV, JSON, and Excel (XLSX) imports now stream row-by-row instead of loading the whole file into memory, so multi-hundred-MB files import without spiking memory. Oversized files and zip-bomb archives are rejected up front. - **Visual table designer.** Design schemas on a drag-and-drop canvas: draw foreign keys by dragging between tables, work across multiple tables in one workspace, and see the combined DDL live. - **Schema diff.** Compare your designed model against the live database schema to see exactly what would change. - **DDL viewer improvements.** View CREATE statements for ClickHouse and DuckDB (view-only), disambiguate overloaded routines, and **Edit & Run** DDL directly with multi-schema support. - **Plugin marketplace.** Search, filter, and sort available plugins; an in-app update indicator flags plugins with newer versions; and a plugin developer CLI (scaffold / validate / package) for authoring `.tablen-plugin` bundles. ### Fixed - **Connection timeout could drop a live connection.** The 10-second connect watchdog could cancel a connection that had already succeeded; it now only fires when the connection genuinely timed out. - **Import escaping** is now dialect-aware — MySQL backtick/backslash rules vs. ANSI double-quotes — so generated batch INSERTs quote identifiers and literals correctly per database. ### Internal - Plugin update checks run in parallel and are gated behind the plugin-sync setting. - Client-side field encryption groundwork (AES-256-GCM) for the team connection vault. - Extensive new unit tests for the Oracle, SQL Server, Firebird, and SQL Anywhere codecs.43.8 MBmacOS 14.0+Jul 6, 2026 Download
All releases on GitHub Releases.
Working on a different platform?
Windows and Linux builds are in progress. Join the waitlist.
macOS · v1.31.0 Windows · soon Linux · soonJoin the waitlist