带有有效语句的 JDBC 报告 MySQLSyntaxError 异常
在连接到 MySQL 数据库的 Java 应用程序中,尝试插入新数据时遇到异常行放入表中。尽管在使用 MySQL Workbench 时成功执行了 INSERT 语句,但还是抛出了 MySQLSyntaxError 异常。
提供的代码是:
<code class="java">public static boolean aggiungiElem(String nome, GrafoGenerico g){ //... PreparedStatement sInserim=conn.prepareStatement(sqlCommandInserim); sInserim.setString(1, utente); sInserim.setString(2, nome); //sInserim.setObject(3,g); System.out.println(sInserim.toString()); sInserim.executeUpdate(sqlCommandInserim); sInserim.close(); return true; //... }</code>
异常的堆栈跟踪显示以下内容:
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
原因
该错误表明 INSERT 语句中存在语法问题。然而,经检查,该声明似乎是有效的。
解决方案
问题在于以下行:
<code class="java">sInserim.executeUpdate(sqlCommandInserim);</code>
此行尝试执行原始 SQL 字符串,而不是使用设置值执行PreparedStatement。执行PreparedStatement的正确方法是:
<code class="java">sInserim.executeUpdate();</code>
其他注意事项
除了这个特定问题之外,需要注意的是,如果PreparedStatements可能会发生资源泄漏没有正确关闭。为了防止这种情况,建议使用finally块来关闭PreparedStatement以及其他资源,例如Connection、Statement和ResultSet。
以上是为什么我的 Java 应用程序在插入数据时抛出 MySQLSyntaxError 异常?的详细内容。更多信息请关注PHP中文网其他相关文章!