Hi
I connect to my MySQL database using MyODBC.
I have a table called 'log' in a database called 'home'. When I try to
do an insert like this:
insert into log (userid,event,event_date) values (blah blah....
I get this error response from MySQL:
You have an error in your SQL syntax; check the manual that corresponds
to your
MySQL server version for the right syntax to use near 'log
(userid,event,event_d
ate) values ('nt','HomeDB Started',now())' at line 1
However, if I use :
insert into home.log (userid,event,event_date) values (blah blah....
It all works OK.
I have another table in the same database which doesn't exhibit this
problem.
Is this some sort of permissions or access rights issue?
Any help appreciated.
Regards
Nick