gpt4 book ai didi

java - SQL 异常 : java. sql.SQLException:未找到数据

转载 作者:行者123 更新时间:2023-12-01 15:07:41 25 4
gpt4 key购买 nike

我收到一个错误,其中显示 SQL 异常:java.sql.SQLException:未找到数据,我似乎无法在这里找到问题。请帮助我,抱歉询问。

try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
String url = "jdbc:odbc:ict11";
Connection con = DriverManager.getConnection(url);
Statement statement = con.createStatement();
statement.executeUpdate( "DELETE from Employee where EmployeeID ="+txtId.getText()+"" );
statement.close();
con.close();
JOptionPane.showMessageDialog(rootPane, "Successfully Deleted");
}
catch(Exception e){
JOptionPane.showMessageDialog(null, e);

}

最佳答案

我可以思考两个问题

  1. 这可能是因为 getText() 没有消除不必要的空格。试试txtId.getText().trim()

  2. 网址可能有误。

除此之外,还可以执行以下操作来改进代码。

  1. 打印完整的堆栈跟踪
  2. 使用PreparedStatement代替语句。

关于java - SQL 异常 : java. sql.SQLException:未找到数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12758693/

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