【发布时间】:2015-05-14 18:44:19
【问题描述】:
语法错误,我似乎找不到。我是数据库新手。
错误:
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 'database ( ID INTEGER NOT NULL, QUESTION varchar(100) NOT NULL, ANSWER varchar(5' at line 1
代码:
public void createTable(Connection conn) {
try {
String createString = "CREATE TABLE " + this.tableName + " ( "
+ "ID INTEGER NOT NULL, "
+ "QUESTION varchar(100) NOT NULL, "
+ "ANSWER varchar(500) NOT NULL, " + "PRIMARY KEY (ID))";
this.sendUpdate(conn, createString); //This part definitely works as intended
System.out.println("Created a table called " + this.tableName);
} catch (SQLException e) {
System.out.println("ERROR: Could not create the table");
e.printStackTrace();
return;
}
}
【问题讨论】:
-
database是保留字。将您的表命名为其他名称。 dev.mysql.com/doc/refman/5.5/en/reserved-words.html