对于这个Java代码:
stmt.addBatch(
"INSERT INTO Bills (BillDateTime, Table, Item, NoAttended, Service, Payment, Total) " +
"VALUES('" + billDateTime + "', " + Integer.parseInt(createTableNumberOutput.toString()) + ", '" + null + "', '"
+ Integer.parseInt(createGuestNumberOutput.toString()) + "', " + "5" + ", '" +
createPaymentTypeOutput.toString() + "', '" + "')");
我收到以下错误:
java.sql.BatchUpdateException: 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 'Table, Item, NoAttended, Service, Payment, Total) VALUES('2012-03-26 11:15:8', 1' at line 1
这个问题对我来说并不明显,因为MySql需要格式'YYYY-MM-DD HH:MM:SS'作为dateTime,我有,对吗?
答案 0 :(得分:3)
Table
是reserved keyword。在它周围使用反引号(`)。
如下所示:
stmt.addBatch("INSERT INTO Bills (BillDateTime,`Table`, Item,NoAttended,Service,Payment,Total..........")
答案 1 :(得分:2)
即使您修复了保留关键字table
问题,它仍然无效。您正在日期字段中尝试插入date.toString()
。 (连接时,toString()
被称为所有非字符串对象)
相反,您应该使用PreparedStatement
并致电stm.setDate(..)
。更熟悉准备好的声明,因为这通常是更好的方法。 (它也有addBatch()
,它的工作方式略有不同 - 你设置所有参数,然后添加,然后重新设置。