
Originally Posted by
davburk
I am having this exact same issue with version 9.2 of mySQL ODBC connector . . . still not fixed.
For me, adding a TIMESTAMP column to the table allows me to delete records without that dreaded error.
In MySQL Workbench, I ran this:
Code:
ALTER TABLE tblYackitySchmackity ADD COLUMN ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP FIRST;
Advice from here caused me to add this change:
https://dev.mysql.com/doc/connector-...bc-errors.html
Include a TIMESTAMP in all tables that you want to be able to update.
I hope this helps someone here!