gpt4 book ai didi

java - 更新语句上的 odbc 驱动程序语法错误

转载 作者:行者123 更新时间:2023-12-02 04:47:39 25 4
gpt4 key购买 nike

String sql = "update Products set ProductName = ?, where ID = ? ";
try{
pst = conn.prepareStatement(sql);
pst.setString(1, Product.getText());
pst.setString(2, ID.getText());
pst.executeUpdate();
JOptionPane.showMessageDialog(null, "Success");
UpdateJTable();
}
catch(Exception e){
JOptionPane.showMessageDialog(null, e);
}

请再次帮助我摆脱这个错误。为什么我的代码有错误?我遵循 youtube 上的所有说明,但我犯了一个错误。我用的是 6.9 netbeans。

最佳答案

您在 SQL 语句中添加了无效的逗号。

String sql = "update Products set ProductName = ?, where ID = ? ";
|-remove this comma

关于java - 更新语句上的 odbc 驱动程序语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29529584/

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