When I execute sql statements with errors, mySQL is not telling me if I have an syntax error or any other kind of error, neither shows me if the statement was executed sucessfully.
I trying to execute statements without the wizard’s workbench, I mean, I writing directly the statements.
For example, if I execute this:
insert into PROFF(aVARCHAR) values ('aVARCHAR')
it shows nothing.
If i execute the correct query without the single quotes mistake:
insert into PROFF(aVARCHAR) values (`aVARCHAR`)
it shows nothing neither.
Is there something I need to set up in order to see the error messages?
The bottom panel was hidden. That’s why I couldn’t see any error messages.