Hi. I'm a newbie to mysql, delphi, oop et al. I have two identical delphi projects. One is linked to an Access db, the other to a MySQL db, both through ODBC and wach linked to a table of the same structure..
I have a Delphi componen DbNavigator - data aware. It has a post (update) button. Clicking that button on the access project yields a post to the access table. Clicking the same button on the same data but on thhe MySQL project yields an SQL error.
"Check the manual that corresponds to your MySQL server version for the right syntax to use near ','detail' SET '(' "
So far as I can see, all MySQL permissions exist for read/write access to
the DB.
My confusion arises from the fact that to give entry level experience, I
chose data aware controls which I presumed would not need coding to function at a basic level. This works with Access but apparently not with MySQL. Clearly I am missing something fundamental regarding differences between MySQL's and Access's interactions with data aware components.
Can anyone suggest what it is that I am missing and how can I coax my
project to write to MySQL?