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(); 展开
this.TextBox2.Text = cmd.ExecuteScalar().ToString(); 展开
展开全部
这样写容易出错,建议使用如下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种写法,好处多多,特别是第二种
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 广告
2024-07-24 广告
Oracle EBS运维是确保企业资源规划系统稳定、高效运行的关键环节。它涵盖了系统监控、性能优化、故障排查与恢复等多方面内容。通过持续的监控和数据分析,运维团队能够及时发现并解决潜在问题,保障系统的稳定性和安全性。同时,他们还需要与业务部...
点击进入详情页
本回答由仁科信息提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询