Describe the bug
Describe the bug
When executing a stored procedure that returns multiple result sets, tabularis only displays the first result set. The remaining result sets are not shown.
The same stored procedure returns all result sets correctly when executed in MySQL Workbench.
Screenshots
Providing screenshots for comparing the output from tabularis and MySQL Workbench.
MySQL Workbench
tabularis
Application:
- App client: MySQL
- App version: 0.13.4
- Installation source: tabularis_0.13.4_x64_en-US.msi
Environment:
- OS name: Windows 11 Pro
- OS version: 25H2
- DB name: MySQL
- DB version: 8.0.46-0ubuntu0.24.04.3
To Reproduce
- Connect to a MySQL database using tabularis.
- Execute a stored procedure that returns multiple result sets (multiple SELECT statements).
- Observe that only the first result set is displayed.
- Execute the same stored procedure in MySQL Workbench.
- Observe that all result sets are returned correctly.
OS Version
Windows 11 Pro, 25H2
Tabularis Version
0.13.4
Relevant Log Output
The stored procedure intentionally returns multiple result sets using multiple SELECT statements.
Example:
CREATE PROCEDURE sp_test()
BEGIN
SELECT 'First result' AS message;
SELECT 'Second result' AS message;
SELECT 'Third result' AS message;
END;
Expected output:
Result Set 1: `First result`
Result Set 2: `Second result`
Result Set 3: `Third result`
Actual behavior in tabularis:
- Only Result Set 1 is displayed.
Actual behavior in MySQL Workbench:
- All three result sets are displayed correctly.
I'm not sure whether this is a missing feature or a bug, but it prevents working with stored procedures that intentionally return multiple result sets.
Describe the bug
Describe the bug
When executing a stored procedure that returns multiple result sets, tabularis only displays the first result set. The remaining result sets are not shown.
The same stored procedure returns all result sets correctly when executed in MySQL Workbench.
Screenshots
Providing screenshots for comparing the output from tabularis and MySQL Workbench.
MySQL Workbench
tabularis
Application:
Environment:
To Reproduce
OS Version
Windows 11 Pro, 25H2
Tabularis Version
0.13.4
Relevant Log Output