C# 中更新数据库的 Update 语句,该怎么写?
txtUserId.TexttxtUserName.TexttxtUserPassword.Text写一个更新查询,条件就是txtUserId然后要更新的内容来自txtU...
txtUserId.Text
txtUserName.Text
txtUserPassword.Text
写一个更新查询,条件就是txtUserId 然后要更新的内容来自txtUserName.Text和txtUserPassword
这个更新语句该怎么写???
在线等!
如果我还有其它的信息,会不会被覆盖???
都不是我想要的. 展开
txtUserName.Text
txtUserPassword.Text
写一个更新查询,条件就是txtUserId 然后要更新的内容来自txtUserName.Text和txtUserPassword
这个更新语句该怎么写???
在线等!
如果我还有其它的信息,会不会被覆盖???
都不是我想要的. 展开
展开全部
SqlCommand MyCommand = new SqlCommand("UPDATE 要更新的表 set 字段1=@字段1,字段2=@字段2 where 条件字段 like 'txtUserId.Text'", MyCn);
MyCommand.Parameters.Add("@字段1",txtUserName.Text
);
MyCommand.Parameters.Add("@字段2",txtUserPassword.Text
);
try
{
MyCommand.Connection.Open();
MyCommand.ExecuteNonQuery();
Response.Write("<script language='javascript'>alert('修改成功!')</script>");
MyCommand.Connection.Close();
}
catch(SqlException ex)
{
Response.Write(ex);
}
MyCommand.Parameters.Add("@字段1",txtUserName.Text
);
MyCommand.Parameters.Add("@字段2",txtUserPassword.Text
);
try
{
MyCommand.Connection.Open();
MyCommand.ExecuteNonQuery();
Response.Write("<script language='javascript'>alert('修改成功!')</script>");
MyCommand.Connection.Close();
}
catch(SqlException ex)
{
Response.Write(ex);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
button1_click显然出自一个c#开发的winform程序,
最后一行居然是console.writeline。。。
代码写的有点凌乱了,太消耗性能了。给你改改:
using(sqlconnection
myconn
=
new
sqlconnection("连接字符串"))
{
string
sql
=
"你的sql语句";
sqlcommand
mycmd
=
new
sqlcommand(sql,myconn);
myconn.open();
int
result
=
mycmd.executenonquery();
}
messagebox.show("更新记录的行数是:"+
result);
仅仅需要5行代码,而不需要你额外声明大量的string对象,代码也可以不那么冗长。
最后一行居然是console.writeline。。。
代码写的有点凌乱了,太消耗性能了。给你改改:
using(sqlconnection
myconn
=
new
sqlconnection("连接字符串"))
{
string
sql
=
"你的sql语句";
sqlcommand
mycmd
=
new
sqlcommand(sql,myconn);
myconn.open();
int
result
=
mycmd.executenonquery();
}
messagebox.show("更新记录的行数是:"+
result);
仅仅需要5行代码,而不需要你额外声明大量的string对象,代码也可以不那么冗长。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
update table set username="+txtusername+",userpassword="+txtuserpassword+" where userid="+txtuserid"
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
当然不会啊,只会更新set后面指定的那两个字段的,你有空应该学学SQL的基本知识。
拼SQL语句啊:
string sql = "update table1 set UserName= '" + txtUserName.Text.Replace("'","''") + "',txtUserPassword='" + txtUserPassword.Text.Replace("'","''") + "' where userid = '" + txtUserId.Text.Replace("'","''") + "'"
拼SQL语句啊:
string sql = "update table1 set UserName= '" + txtUserName.Text.Replace("'","''") + "',txtUserPassword='" + txtUserPassword.Text.Replace("'","''") + "' where userid = '" + txtUserId.Text.Replace("'","''") + "'"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1号是对的 Text.Replace("'","''")把单引号变成双单引号 因为如果输入单引号SQL会报错
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |