mtxr / SublimeText-SQLTools

SQLTools for Sublime Text 3
https://code.mteixeira.dev/SublimeText-SQLTools/
GNU General Public License v3.0
177 stars 40 forks source link

Display number of records affected/found and other MySQL messages. #159

Closed aditya43 closed 6 years ago

aditya43 commented 6 years ago

Issue Type

Feature Request | Question

Description

Would it be possible for us to see the MySQL responses after executing queries?

For e.g. After executing SELECT query, it should say [X] number of records found. After executing INSERT/UPDATE/DELETE query, it should say [X] number of records affected. After executing DDL queries (etc. CREATE/ALTER/RENAME/TRUNCATE/DROP TABLE etc.). it should render some response.

Thank you for a great plugin.

tkopets commented 6 years ago

See related issue: #73 It is not enabled by default in SQLTools as enabling verbose mode in MySQL also outputs the commands being executed which would spam the output.

aditya43 commented 6 years ago

Thank you very much. That is exactly what I was looking for.