asp.NET 的 update 语句 哪里有错啊
stringmystr;mystr=ConfigurationManager.ConnectionStrings["myconnstring"].ToString();O...
string mystr;
mystr = ConfigurationManager.ConnectionStrings["myconnstring"].ToString();
OleDbConnection myconn = new OleDbConnection();
myconn.ConnectionString = mystr;
myconn.Open();
OleDbCommand mycomm = new OleDbCommand();
mycomm.CommandText = "update Culture set [书名]='TextBox2.Text',[价格]='TextBox3.Text',[出版社]='TextBox4.Text', where [书号]="+TextBox1.Text+";
mycomm.CommandType = CommandType.Text;
mycomm.Connection = myconn;
mycomm.ExecuteNonQuery();
myconn.Close();
Label1.Text = "修改成功"; 展开
mystr = ConfigurationManager.ConnectionStrings["myconnstring"].ToString();
OleDbConnection myconn = new OleDbConnection();
myconn.ConnectionString = mystr;
myconn.Open();
OleDbCommand mycomm = new OleDbCommand();
mycomm.CommandText = "update Culture set [书名]='TextBox2.Text',[价格]='TextBox3.Text',[出版社]='TextBox4.Text', where [书号]="+TextBox1.Text+";
mycomm.CommandType = CommandType.Text;
mycomm.Connection = myconn;
mycomm.ExecuteNonQuery();
myconn.Close();
Label1.Text = "修改成功"; 展开
3个回答
展开全部
"update Culture set [书名]='TextBox2.Text',[价格]='TextBox3.Text',[出版社]='TextBox4.Text', where [书号]="+TextBox1.Text+";
该为:
string.Foramt("update Culture set [书名]='{0}', [价格]='{1}', [出版社]='{2}' where [书号]='{3}' ", TextBox2.Text, TextBox3.Text, TextBox4.Text, TextBox1Text);
对于多个string字符串拼接,可以使用 string.Format()进行格式化~~~~
该为:
string.Foramt("update Culture set [书名]='{0}', [价格]='{1}', [出版社]='{2}' where [书号]='{3}' ", TextBox2.Text, TextBox3.Text, TextBox4.Text, TextBox1Text);
对于多个string字符串拼接,可以使用 string.Format()进行格式化~~~~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
"update Culture set [书名]="&TextBox2.Text&",[价格]="&TextBox3.Text&",[出版社]="&TextBox4.Text&", where [书号]="&TextBox1.Text;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-11-24
展开全部
Text', where [书号] 中的,怎么回事?
来自:求助得到的回答
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询