A stripped-down MySQL client for Windows whose defining feature is parallelism — a slow query in one tab never blocks another.
Download for WindowsMost clients multiplex your tabs onto one connection, so the slow SELECT you kicked off five minutes ago freezes everything behind it. This one spawns a worker thread per connection and holds a separate MySQL connection per query tab. Socket reads and row parsing happen off the UI thread entirely.
Two tabs on the same connection execute at the same time. The UI stays responsive while a long query runs.
Connect over TCP, through an SSH tunnel, or with AWS IAM auth tokens — refreshed automatically before the 15-minute expiry.
Open tabs, their result grids, schema cache and layout are written per tab and restored next time you open the connection — offline included.
CodeMirror 6 with completion that knows your tables and columns, search, and formatting.
Virtualized for large results. Edit cells, review the generated SQL, then apply or revert.
Create and alter tables through a form that shows you the exact DDL before anything runs.
Drives mysqldump and mysql directly, with the command it builds shown in full.
Drop, truncate, alter and grid-apply do not execute when you click them. They open a new tab pre-loaded with the SQL, or show you a copyable confirmation — you run it. The only statements that execute on their own are the ones you typed and ran yourself, plus USE and the explicit "select rows, limit 1000" button.
Connection passwords and SSH secrets are encrypted at rest with Windows DPAPI, and updates install quietly in the background when you next close the app.