JDBC executeUpdate() executes this MySqlQuery:
CREATE TABLE IF NOT EXISTS TaskLog
(TaskID int NOT NULL AUTO_INCREMENT,
NoOfLock int NOT NULL,
LastAcquired varchar(50) NOT NULL,PRIMARY KEY(TaskID))
It gives me this:
SQLException: 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 'PRIMARY KEY(TaskID))' at line 1
I tried executing it in PhpMyAdmin, it works! So I don't understand why it doesn't work when executing through java codes