I'm trying to execute the sql query:
INSERT INTO celebrity (name, `1`, `15`, `3`, `20`, `4`, `13`, `35`, `22`, `6`, `19`) VALUES ("Keith Allen", 1, 1, 1, 1, 1, -1, -1, -1, -1, 1)
which worked fine in the workbench and correctly added the new row, however when I call the same query from java using the executeUpdate(String query) method, I get a sql syntax error
'Keith Allen'1is the name of a column and not just an integer. I was using ' before and I was getting syntax errors