QueryBox supports MySQL databases through a native driver plugin. Connect to local or remote MySQL servers using basic authentication or custom connection strings.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/felixdotgo/querybox/llms.txt
Use this file to discover all available pages before exploring further.
Connection Methods
- Basic
- DSN
Configure your MySQL connection using individual parameters:
MySQL server hostname or IP addressDefault:
127.0.0.1MySQL server portDefault:
3306Database usernameDefault:
rootDatabase password
Database name to connect to
TLS mode for secure connectionsOptions:
skip-verify, true, false, preferredDefault: skip-verifyAdditional connection parametersExample:
charset=utf8&parseTime=trueConnection String Examples
Local Development
Remote Server with TLS
Custom Charset and Timezone
Supported Features
SQL Queries
Execute SELECT, INSERT, UPDATE, DELETE statements
Query Explanation
Analyze query execution plans with EXPLAIN
Database Browser
Browse databases, tables, and schemas visually
DDL Operations
Create and drop databases and tables
Capabilities
- Query Execution: Run arbitrary SQL queries and view results
- Explain Query: Prefix queries with
EXPLAINto analyze execution plans - Connection Tree: Browse all databases and tables with expandable tree view
- DDL Actions: Create/drop databases and tables directly from the UI
- TLS Support: Connect securely using embedded root certificates
Notes
The MySQL driver automatically applies a 5-second connection timeout to prevent hanging connections.
Plugin Information
- Version: 0.1.0
- License: GPL-2.0
- Author: Oracle
- Tags: sql, relational