gpt4 book ai didi

Java、mySQL、connector-j、删除联系人

转载 作者:行者123 更新时间:2023-11-29 13:30:54 24 4
gpt4 key购买 nike

我正在尝试从使用 MySQL 数据库的地址簿中删除联系人,我认为这就是完成的方法,但是抛出了异常并打印“'where 子句'中的未知列'john'” ”。每个联系人都有 5 个属性 - 姓名、手机、家庭电话、电子邮件和地址,其中一个联系人姓名是“john”。

public static void deleteContact(String name)
{
Connection con = connect();// function that returns mySQL function
Statement s = con.createStatement();
try{
s.executeUpdate("Delete from contactDetails where name =" + name);
}
catch(SQLException e){
System.out.println(e.getMessage());
}
}

最佳答案

用引号将变量值引起来。

"... where name ='" + name + "'");

关于Java、mySQL、connector-j、删除联系人,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19468272/

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