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());
} 展开
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());
} 展开
1个回答
展开全部
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 +"'",这样就是更新一条记录了。
string str1 = "update denglu set username='" + this.txt_username.Text + "',userpass='" + this.txt_userpass.Text + "' where userid='"+ userId +"'",这样就是更新一条记录了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |