ASP.NET * 附近有语法错误
protectedvoidButton1_Click(objectsender,EventArgse){//connectionStringstrCon="DataSou...
protected void Button1_Click(object sender, EventArgs e)
{
//connection
String strCon = "Data Source=suizhikuo;Initial Catalog=mytest;Persist Security Info=True;User ID=sa;Password=suizhikuo12081208";
SqlConnection con = new SqlConnection(strCon);
//commmand
String sqlStr="delete * from userinfo where userid ="+Convert .ToInt16 ( userid.SelectedItem .Text) ;
SqlCommand cmd = new SqlCommand(sqlStr, con);
//open
con.Open();
cmd.ExecuteNonQuery();
Label1.Text = "删除成功";
con.Close();
MyBind();
}
执行 cmd.ExecuteNonQuery();
时,提示 * 附近有语法错误 怎么回事啊?? 展开
{
//connection
String strCon = "Data Source=suizhikuo;Initial Catalog=mytest;Persist Security Info=True;User ID=sa;Password=suizhikuo12081208";
SqlConnection con = new SqlConnection(strCon);
//commmand
String sqlStr="delete * from userinfo where userid ="+Convert .ToInt16 ( userid.SelectedItem .Text) ;
SqlCommand cmd = new SqlCommand(sqlStr, con);
//open
con.Open();
cmd.ExecuteNonQuery();
Label1.Text = "删除成功";
con.Close();
MyBind();
}
执行 cmd.ExecuteNonQuery();
时,提示 * 附近有语法错误 怎么回事啊?? 展开
4个回答
展开全部
delete * from 改成 delete from
delete是不需要写*的
delete是不需要写*的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
*和from之间应该有空格的,你连在一起肯定错了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
去掉 "*" 就行了.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询