You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you @zhrt123 for reporting this issue with the DESCRIBE command. I've confirmed the "Unread result found" error when using this command and have added it to our todo list for fixing.
In the meantime, you can use queries against the INFORMATION_SCHEMA database to get table structure information, which works correctly:
SELECT
COLUMN_NAME,
DATA_TYPE,
CHARACTER_MAXIMUM_LENGTH,
IS_NULLABLE,
COLUMN_DEFAULT,
COLUMN_COMMENT
FROMINFORMATION_SCHEMA.COLUMNSWHERE
TABLE_SCHEMA ='your_database_name'AND TABLE_NAME ='t_device_management';
This actually provides even more detailed information than the DESCRIBE command. Thanks again for bringing this to our attention!
When I used DESCRIBE with this server, I got the following error:
The text was updated successfully, but these errors were encountered: