Running SQLyog v3.1
Win2k running IIS
mySQL Server
I am having problems running delete queries using SQLyog.
For example, when I first go into it, I can run a query like:
delete from `data`.`news` where newsID=363;
and it works.
I can then do another insert into my db. and try this SQL:
delete from `data`.`news` where newsID=364;
and I get this error:
Error Code : 1064
You have an error in your SQL syntax near 'delete from `data`.`news` where newsID=364' at line 3
(0 ms taken)
But if I close and restart SQLyog the SQL statement will be executed:
(1 row(s) affected)
(0 ms taken)
Any ideas?
Thanks
Jim