Docs
Quick start guide for using QueryPilot.
Quick start
- Create a connection profile for your MySQL server.
- Open the Query Runner.
- Write or paste SQL in the editor.
- Use Run Current or Run All.
- Tap any cell to copy its value. Long press to view full text.
- Export CSV or XML if your plan allows export.
Tips
- Use read only credentials when possible.
- Enable SSL when your server supports it.
- Keep queries short and targeted for mobile.
- Prefer SELECT and EXPLAIN when investigating.
Example queries
SELECT NOW();
SELECT DATABASE();
SHOW TABLES;
DESCRIBE your_table;
EXPLAIN SELECT * FROM your_table WHERE id = 123;
SELECT DATABASE();
SHOW TABLES;
DESCRIBE your_table;
EXPLAIN SELECT * FROM your_table WHERE id = 123;
Place a screenshot here showing how QueryPilot highlights the current statement near the cursor.