gpt4 book ai didi

mysql - 为什么我收到此错误 com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException?

转载 作者:行者123 更新时间:2023-11-30 00:42:17 27 4
gpt4 key购买 nike

我确实遇到了这个错误,错误行如下:

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 'employee WHERE dep_id=29' at line 1

1.UserDao.java:

public void deleteUser(int dep_Id)
{
try
{
PreparedStatement ps=connection.prepareStatement("delete from employee where dep_id=?");
ps.setInt(1, dep_Id);
ps.executeUpdate();
}
catch(SQLException e)
{
System.out.println(e);
}
}

最佳答案

看来问题是因为我没有提到数据库中的DEPT_ID。已修复。

关于mysql - 为什么我收到此错误 com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21668823/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com