jdbc 返回有效查询的 mySQL 语法错误异常
我使用 java.sql.Statement.excecuteUpdate 方法创建一个表并通过 JDBC 将一些值插入数据库。 然而,它无缘无故地给了我 MySQL 语法异常。 我将相同的代码复制并粘贴到命令提示符中。 有效。
我想知道为什么要这样做??
I user the java.sql.Statement.excecuteUpdate method to create a table and insert some values into the database through JDBC. However, it gives me MySQL syntax exceptions for no reason. I copied and pasted the same code into command prompt. it worked.
I'm wondering why it's doing that??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
猜测
你不能执行如下查询:insert ...; 插入 ... ; 每个方法调用仅一个查询
Guessing
You cannot do a query like: insert ...; insert ... ; only one query per method call