第 1 行: '=' 附近有语法错误。
“/inv”应用程序中的服务器错误。-------------------------------------------------------------------...
“/inv”应用程序中的服务器错误。
--------------------------------------------------------------------------------
第 1 行: '=' 附近有语法错误。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.Data.SqlClient.SqlException: 第 1 行: '=' 附近有语法错误。
源错误:
行 173: con.Open();
行 174: SqlCommand cmd0=new SqlCommand("select * from productitem where pitemid="+pitemid,con);
行 175: SqlDataReader sdr0=cmd0.ExecuteReader();
行 176: if (sdr0.Read())
行 177: {
源文件: c:\inetpub\wwwroot\inv\newin.aspx.cs 行: 175
堆栈跟踪:
[SqlException: 第 1 行: '=' 附近有语法错误。]
System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream)
System.Data.SqlClient.SqlCommand.ExecuteReader()
inv.newin.ShowEmployee() in c:\inetpub\wwwroot\inv\newin.aspx.cs:175
inv.newin.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\inv\newin.aspx.cs:55
System.Web.UI.Control.OnLoad(EventArgs e)
System.Web.UI.Control.LoadRecursive()
System.Web.UI.Page.ProcessRequestMain()
是哪里的问题啊?该怎样改正?
private void ShowEmployee()
{
string pitemid=this.txtpid.Text;
SqlConnection con=DBCon.getCon();
con.Open();
SqlCommand cmd0=new SqlCommand("select * from productitem where pitemid="+pitemid,con);
SqlDataReader sdr0=cmd0.ExecuteReader();
if (sdr0.Read())
{
this.txtpitemname.Text=sdr0["pitemname"].ToString();
this.txtpitemunit.Text=sdr0["pitemunit"].ToString();
this.txtpitemsize.Text=sdr0["pitemsize"].ToString();
this.txtpitemprice.Text=sdr0["pitemprice"].ToString();
this.txtpitemtype.Text=sdr0["pitemtype"].ToString();
}
sdr0.Close();
con.Close();
} 展开
--------------------------------------------------------------------------------
第 1 行: '=' 附近有语法错误。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.Data.SqlClient.SqlException: 第 1 行: '=' 附近有语法错误。
源错误:
行 173: con.Open();
行 174: SqlCommand cmd0=new SqlCommand("select * from productitem where pitemid="+pitemid,con);
行 175: SqlDataReader sdr0=cmd0.ExecuteReader();
行 176: if (sdr0.Read())
行 177: {
源文件: c:\inetpub\wwwroot\inv\newin.aspx.cs 行: 175
堆栈跟踪:
[SqlException: 第 1 行: '=' 附近有语法错误。]
System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream)
System.Data.SqlClient.SqlCommand.ExecuteReader()
inv.newin.ShowEmployee() in c:\inetpub\wwwroot\inv\newin.aspx.cs:175
inv.newin.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\inv\newin.aspx.cs:55
System.Web.UI.Control.OnLoad(EventArgs e)
System.Web.UI.Control.LoadRecursive()
System.Web.UI.Page.ProcessRequestMain()
是哪里的问题啊?该怎样改正?
private void ShowEmployee()
{
string pitemid=this.txtpid.Text;
SqlConnection con=DBCon.getCon();
con.Open();
SqlCommand cmd0=new SqlCommand("select * from productitem where pitemid="+pitemid,con);
SqlDataReader sdr0=cmd0.ExecuteReader();
if (sdr0.Read())
{
this.txtpitemname.Text=sdr0["pitemname"].ToString();
this.txtpitemunit.Text=sdr0["pitemunit"].ToString();
this.txtpitemsize.Text=sdr0["pitemsize"].ToString();
this.txtpitemprice.Text=sdr0["pitemprice"].ToString();
this.txtpitemtype.Text=sdr0["pitemtype"].ToString();
}
sdr0.Close();
con.Close();
} 展开
4个回答
展开全部
pitemid
这个是个string?你检查下这个string里面是不是放错东西了?
string pitemid=this.txtpid.Text;
在这之前,你要先检查this.textpid.Text是不是你想要的东西
比如,pitemid是一个数字,那么你给个abc你说可以么?
这个是个string?你检查下这个string里面是不是放错东西了?
string pitemid=this.txtpid.Text;
在这之前,你要先检查this.textpid.Text是不是你想要的东西
比如,pitemid是一个数字,那么你给个abc你说可以么?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看代码没用 你试着输出你的sql语句 就知道错在那里了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
就是SQL拼接问题,你真不仔细哦
SqlCommand cmd0=new SqlCommand("select * from productitem where pitemid='" + pitemid + "'",con);
SqlCommand cmd0=new SqlCommand("select * from productitem where pitemid='" + pitemid + "'",con);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SqlCommand cmd0=new SqlCommand("select * from productitem where pitemid=" + pitemid + "'",con);
哈哈
哈哈
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询