为什么我的 Java 应用程序在插入数据时抛出 MySQLSyntaxError 异常?

Barbara Streisand
发布: 2024-11-02 02:32:30
原创
999 人浏览过

Why Does My Java Application Throw a MySQLSyntaxError Exception When Inserting Data?

带有有效语句的 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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!