JDBC Exception: MySQLSyntaxError with Valid SQL Statement
在本文中,我们深入研究使用 JDBC 向数据库插入数据时遇到的问题。 MySQL 数据库。尽管在 MySQL Workbench 中执行了有效的 INSERT 语句,我们还是收到了 MySQLSyntaxError 异常。
要调查根本原因,让我们分析代码:
public static boolean aggiungiElem(String nome, GrafoGenerico g){
if(connessioneAperta()){
try{
String sqlCommandUser = "SELECT USER()";
String sqlCommandInserim = "INSERT INTO salvataggi VALUES ( ? , ? , DEFAULT , NULL );";
PreparedStatement sUser = conn.prepareStatement(sqlCommandUser);
... // Execute user query
PreparedStatement sInserim = conn.prepareStatement(sqlCommandInserim);
sInserim.setString(1, utente);
sInserim.setString(2, nome);
System.out.println(sInserim);
sInserim.executeUpdate(sqlCommandInserim);
... // Close PreparedStatements and ResultSet
}
catch(SQLException e){
e.printStackTrace();
return false;
}
}
else
return false;
}
检查堆栈跟踪:
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 '? , ? , DEFAULT , NULL )' at line 1
此错误表明 SQL 语句中存在语法错误。然而,我们的 INSERT 语句似乎是正确的。
经过仔细检查,我们注意到executeUpdate() 方法采用字符串参数 SQLCommandInserim 而不是PreparedStatement sInserim。这是代码中的一个疏忽。
解决方案:
要解决此问题,请替换以下内容line:
sInserim.executeUpdate(sqlCommandInserim);
With:
sInserim.executeUpdate();
通过调用executeUpdate () 在PreparedStatement 上,JDBC 会将占位符 (?) 替换为使用 setString() 设置的值方法,防止语法错误。
其他注意事项:
还建议使用finally块来关闭所有数据库对象(PreparedStatements、Connections、Statements和ResultSets)以防止发生异常时资源泄漏。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3