C#datagridview数据更新到SQL SERVER中,为什么我一更新数据库中的数据全部都更新了

求前辈告知,我下面这段代码到底要怎么改才能不让它全部都更新成一个样,只更新选中的或指定的数据。先谢谢了try{stringstr="server=OE15ZMCNLZ87... 求前辈告知,我下面这段代码到底要怎么改才能不让它全部都更新成一个样,只更新选中的或指定的数据。先谢谢了

try
{

string str = "server=OE15ZMCNLZ87JRO;database=shujukuming;uid=sa;pwd=123456";
string str1 = "update denglu set username='" + this.txt_username.Text + "',userpass='" + this.txt_userpass.Text + "'";
SqlConnection con = new SqlConnection(str);
con.Open();
SqlCommand com = new SqlCommand(str1, con);
com.ExecuteNonQuery();
//Form1 form1 = new Form1();
//form1.Show();
//this.Hide();
MessageBox.Show("用户" + this.txt_username.Text + "以修改");
con.Close();
}
catch (Exception ee)
{
MessageBox.Show(ee.ToString());
}
展开
 我来答
yueyangyxj
推荐于2021-02-18 · TA获得超过693个赞
知道小有建树答主
回答量:626
采纳率:85%
帮助的人:256万
展开全部
string str1 = "update denglu set username='" + this.txt_username.Text + "',userpass='" + this.txt_userpass.Text + "'";这条语句是更新表里面所有的记录,你需要加更新的条件,如在表里加一个字段:UserID,设置为自增长ID或是每个用户的编号,要唯一才行,这样更新的时候把条件加上

string str1 = "update denglu set username='" + this.txt_username.Text + "',userpass='" + this.txt_userpass.Text + "' where userid='"+ userId +"'",这样就是更新一条记录了。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式