gpt4 book ai didi

c# - 插入查询不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 12:27:00 25 4
gpt4 key购买 nike

数据库连接正常。但是我的插入查询有问题。这是插入查询

String query = "INSERT INTO Address(Name,TelNo1,Address,TelNo2,TelNo3) " +
"VALUES('" +
_name + "','" +
_tel1 + "','" +
_address + "','" +
_tel2 + "','" +
_tel3 + ")";

我找不到错误请帮我解决这个问题我正在使用 VS 2010 和 MSsql 2008。

最佳答案

最后缺少 ':

String query = "INSERT INTO Address(Name,TelNo1,Address,TelNo2,TelNo3) VALUES('"+ _name +"','"+ _tel1 +"','"+ _address +"','"+ _tel2 +"','"+ _tel3 +"')";

关于c# - 插入查询不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17130694/

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