Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2025-04-18 | 1.0 kB | |
Release v0.2.2 source code.tar.gz | 2025-04-18 | 9.6 kB | |
Release v0.2.2 source code.zip | 2025-04-18 | 15.5 kB | |
Totals: 3 Items | 26.1 kB | 1 |
Release v0.2.2
Overview
This release fixes issues with SQL commands that return result sets, including SHOW INDEX
, SHOW CREATE TABLE
, and DESCRIBE
. Previously, these commands would return an error: "Error executing query: Unread result found".
What's New
- Fixed Result Set Handling: Changed the condition from checking the query text to checking for result sets via
cursor.description
, allowing all result-returning commands to work properly - Improved Error Handling: Added robust error handling for result fetching operations
- Enhanced Debugging: Added additional debug output to aid in troubleshooting
Affected Components
server.py
: Modified result set handling logic
Testing
This release has been tested with: - SELECT queries - SHOW CREATE TABLE commands - SHOW INDEX commands - DESCRIBE commands
All tests passed successfully, demonstrating that the fix properly handles both SELECT and non-SELECT queries that return result sets.