This developer's tool is a proxy between your website and database, giving you full visibility into all executed queries. It automatically identifies performance bottlenecks and highlights slow queries that need indexing. Currently, supports MySQL, with PostgreSQL and MongoDB support coming soon.
Assuming your MySQL database server is running locally. Otherwise, use your server IP address instead of 127.0.0.1.
- Specify the port at which the Proxy DBQ runs (default 3307) in your application configuration file. For example, in Laravel PHP
.envfile addDB_PORT=3307. - Use
127.0.0.1asTarget DB server IP,3306asTarget DB server portand3307asLocal proxy portin Proxy DBQ interface. - Hit
Start Proxy Serverbutton in Proxy DBQ interface.
- Specify the port at which the Proxy DBQ runs (default 3307) in your application configuration file. For example, in Laravel PHP
.envfile addDB_PORT=3307. - Specify the database server host IP as
host.docker.internalin your application configuration file. For example, in Laravel PHP.envfile addDB_HOST=host.docker.internal. - Use
127.0.0.1asTarget DB server IP,3306asTarget DB server portand3307asLocal proxy portin Proxy DBQ interface. - Hit
Start Proxy Serverbutton in Proxy DBQ interface.
Built with Electron under the hood, Vue.js 3 and Bootstrap 5.
To set up the development environment:
-
Install dependencies:
npm install -
Start the development server:
npm run dev
npm i
npm run package
npx electron-forge make
npm run publish
The binary and the setup should appear in the /dist/ folder.
npm run package gives the error - Cannot create symbolic link
Run the command in the CLI with administrator permissions.
npm run package errors: Cannot start service: Host version "0.21.5" does not match binary version "0.25.10"
This is caused by a version mismatch in esbuild between the JavaScript host package and the native binary. Fix:
- Remove install artifacts: delete
node_modulesandpackage-lock.json. - Ensure you are using Node 18+ and npm 9+.
- Reinstall dependencies to pick up the pinned esbuild version:
npm install. - Try packaging again:
npm run package.
Note: The project pins esbuild to 0.21.5 to align with Vite. If you still see the error, run npm cache verify and repeat the steps above.
- Test if Vitess, TiDB, MariaDB protocols are also supported. Update docs. Reflect supported protocols in UI.
- Remember query. A clickable star icon, that puts the query to the saved queries list.
- View query. Click on a query to see the query details.
- Saved queries should not be removed.
- Access saved queries in query viewer.
- Debug mode. Make possible to see the internal operations and errors in the main log.
- Output time with seconds.
- Time format customizable.
- Add output styles: date on the left; date above the query;..
- Focus on search.
- Queries filter - time range; query type: SELECT, INSERT,..
- Window focus on search match. Highlight, expand and focus on app window when the search has a match.
- Show amount of search matches in search panel.
- Allow to navigate between search matches.
- "Scroll to bottom" button.
- Refactor code.
- Group requests by clientId/session -
[MySQL][127.0.0.1:61513]? - Beautify query button.
- Multiple connections.
- Request time taken.
- Slow logs. Configurable.
- Duplicates counter.
- Returned rows amount.
- Recommend SQL best practices - * -> list columns, index used columns, coverage indexes,..
- Recommend schema/query/index performance/normalization/denormalization improvements by analyzing query history.
- Notify about N+1 queries.




