System.Data.SqlClient.SqlException: '=' 附近有语法错误。

SqlCommandcmd=newSqlCommand("selectifmarriagefromperson_bistcwhereperson_id="+this.Dr... SqlCommand cmd = new SqlCommand("select ifmarriage from person_bistc where person_id=" + this.DropDownList3.Text, sqlconn);
this.TextBox2.Text = cmd.ExecuteScalar().ToString();
展开
 我来答
coder_tmp
2012-07-19 · TA获得超过443个赞
知道小有建树答主
回答量:547
采纳率:100%
帮助的人:351万
展开全部
这样写容易出错,建议使用如下2种方法:
1.
String sql=String.Format("select ifmarriage from person_bistc where person_id='{0}'",this.DropDownList3.Text);

2.
String sql="select ifmarriage from person_bistc where person_id=@person_id";
SqlCommand cmd = new SqlCommand(sql, cn);
cmd.Parameters.AddWithValue("@person_id",this.DropDownList3.Text);

这2种写法,好处多多,特别是第二种
仁科信息
2024-07-24 广告
Oracle EBS运维是确保企业资源规划系统稳定、高效运行的关键环节。它涵盖了系统监控、性能优化、故障排查与恢复等多方面内容。通过持续的监控和数据分析,运维团队能够及时发现并解决潜在问题,保障系统的稳定性和安全性。同时,他们还需要与业务部... 点击进入详情页
本回答由仁科信息提供
Jenito
2012-07-18 · TA获得超过218个赞
知道小有建树答主
回答量:189
采纳率:0%
帮助的人:182万
展开全部
"select ifmarriage from person_bistc where person_id=" '+ this.DropDownList3.Text+"'"
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式