是y插入語法JSP MySQL的插入錯誤
String add="INSERT INTO time_table VALUES("+coursename+"','"+coursecode+"','"+days+"','"+year+"','"+dep+"','"+time+"','"+hall+"','"+lecturer+"','"+credithours+"')";
ERROR
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException:
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 '','5','2','2','8','1','9','PA','2')' at line 1
這就是我收到的錯誤。
你是什麼time_table表結構?如果您未指定列名稱,則預計您將按與數據庫中定義的順序相同的順序傳遞所有列的數據。 – ayip