User Manual
Welcome to the Queriez documentation. Learn how to install the app, manage your databases, and master the keyboard shortcuts to boost your productivity.
Installation Guide
Getting Queriez running on your machine is straightforward. Follow the instructions for your operating system, or visit our dedicated detailed installation page for more help.
macOS
- Download the macOS
.dmginstaller and open it. - Drag Queriez.app into your
Applicationsfolder. - Security Bypass:
If Gatekeeper blocks the app, go to System Settings > Privacy & Security, scroll down, and click "Open Anyway".
Windows
- Download the Windows
.exeinstaller. - Double-click the installer to begin.
- Security Bypass:
If Microsoft SmartScreen appears, click "More info" below the text, then click the "Run anyway" button.
Linux
- Download the Linux
.AppImagefile. -
Make the file executable using the terminal:
chmod +x Queriez.AppImage - Double-click the file to run the application, or execute it via terminal.
Creating a Connection
Queriez supports PostgreSQL, MySQL, and SQLite. Adding a new database connection is simple and secure.
- Press
Cmd + N(orCtrl + N) or click the "+" icon in the sidebar. - Select your database engine (PostgreSQL, MySQL, or SQLite).
- Fill in your host, port, username, database name, and password.
- Click Test Connection to verify your credentials, then click Save.
Your passwords are never stored in plain text. Queriez encrypts and safely stores all your database passwords directly in your native OS Keyring (macOS Keychain or Windows Credential Manager).
Usage Tutorials
1. The Query Editor
The query editor is powered by CodeMirror, offering lightning-fast syntax highlighting and autocomplete.
- Partial Execution: If you have multiple SQL statements in one tab, you can execute just one by highlighting the specific lines you want to run, and pressing
Cmd + Enter. If nothing is highlighted, the entire script runs. - Multi-Window: Need more screen space? Press
Shift + Cmd + Nto break out a connection into an entirely new, isolated window.
2. The Data Grid
The Data Grid allows you to manipulate data without writing UPDATE or DELETE queries.
- Inline Editing: Double-click any cell to instantly edit its value. Press
Enterto save the change locally. (Note: You must click the green "Save Changes" button on the toolbar to commit changes to the database). - Set to NULL: Select a cell and press
BackspaceorDeleteto instantly empty it and mark it asNULL. - Delete Rows: Highlight one or more rows by clicking the row number on the left, then press
Cmd + Delete(orCtrl + Backspace) to stage them for deletion.
3. Server Monitoring
Keep track of your database's health directly from the app.
- Click the Activity icon in the sidebar to view the System Monitor (RAM usage, active threads).
- Right-click a connection in the sidebar and select "Show Server Activity" to view a live 3-second auto-refreshing dashboard of all running queries on the server. You can click Kill on any stuck query to terminate it instantly.
4. Backup & Export
Extracting data out of Queriez is designed to be seamless.
- Export Results: Run a query, then click the Export button above the Data Grid to download the result set as CSV, JSON, Excel (XLSX), or SQL INSERT statements.
- Native Backup: Right-click any database in the sidebar and select Backup. Queriez uses the native
pg_dumpandmysqldumpengines under the hood, supporting on-the-fly GZIP compression and the ability to continue on syntax errors during restoration.
Keyboard Shortcuts
Queriez is designed to be highly responsive to keyboard combinations, heavily boosting your productivity.
Note: On Windows and Linux, the Cmd key is generally mapped to Ctrl.
Global & Navigation
| Action | Mac Shortcut | Win/Linux |
|---|---|---|
| New Query Tab | Cmd + T | Ctrl + T |
| Close Current Tab | Cmd + W | Ctrl + W |
| Switch Tabs | Ctrl + Tab | Ctrl + Tab |
| Command Palette | Cmd + K | Ctrl + K |
| Open Settings | Cmd + , | Ctrl + , |
| New Connection | Cmd + N | Ctrl + N |
| New Window | Shift + Cmd + N | Shift + Ctrl + N |
Query Editor
| Action | Mac Shortcut | Win/Linux |
|---|---|---|
| Run Query (or selection) | Cmd + Enter | Ctrl + Enter |
| Toggle Comment | Cmd + / | Ctrl + / |
| Indent Line(s) | Tab | Tab |
Data Grid Viewer
| Action | Shortcut |
|---|---|
| Inline Edit | Double Click |
| Save Edit | Enter |
| Cancel Edit | Esc |
| Set to NULL | Backspace / Delete |
| Delete Row(s) | Cmd + Delete |
| Select All | Cmd + A |