Using the following SQL statements ...
update zreads set zreads.eposReleaseDate = '2015-01-13T12:34:12.017Z' where zreads.zReadID = 2;
select * from zreads where zreads.zreadid = 1;
results in a warning about truncation on the eposReleaseDate. The warning is correct, but with both of the statements being executed, the actual message is not displayed.
Instead the dialogue shows ...
"Warning
Your query produced 1 warnings.
Warnings from your last query:
[OK]
"
No actual warning.
Remove the select statement and the dialog correctly displays ...
"Warning
Your query produced 1 warnings.
Warnings from your last query:
Warning: Data truncated for column 'eposReleaseDate' at row 1
[OK]
"
The log at the bottom of the application doesn't show the warning either way; i.e. executing single or multiple statements.
Regards,
Richard Quadling.