首页上一页 1 下一页尾页 1 条记录 1/1页
数据库语法问题
发表在ASP.NET图书答疑
2012-02-24
是否精华
是
否
版块置顶:
是
否
老师好!
protected void deleBtn_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("server=ZYM\\SQLEXPRESS;database=dbtest;uid=sa;password=");
con.Open();
string sqlStr =" delete from Table_1 [font color=#FF0000]where Name="+txtUsername.Text[/font];
SqlCommand myCmd = new SqlCommand(sqlStr, con);
myCmd.ExecuteNonQuery();
con.Close();
运行时我在文本框输入 xxx报错 列 **无效 (table_1 中有xxx这个值 )
protected void deleBtn_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("server=ZYM\\SQLEXPRESS;database=dbtest;uid=sa;password=");
con.Open();
string sqlStr =" delete from Table_1 [font color=#FF0000]where Name="+txtUsername.Text[/font];
SqlCommand myCmd = new SqlCommand(sqlStr, con);
myCmd.ExecuteNonQuery();
con.Close();
运行时我在文本框输入 xxx报错 列 **无效 (table_1 中有xxx这个值 )