我的表单中有一个访问表,还有3个用于删除,更新和插入的按钮。 插入和删除工作正常。 我的问题是更新。它适用于第一次运行,但是当我选择另一行datagridview时,它会使用最后一个数据(更新的第一个信息)更新该行。
以下是更新后的代码:
com.Connection = con;
com.CommandType = CommandType.Text;
com.CommandText = "UPDATE login SET [password]=@password , [uname]=@uname , [ufamily]=@ufamily , [admin]=@admin WHERE username='" + textBox1.Text + "'";
com.Parameters.AddWithValue("@password", textBox2.Text);
com.Parameters.AddWithValue("@uname", textBox3.Text);
com.Parameters.AddWithValue("@ufamily", textBox4.Text);
com.Parameters.AddWithValue("@admin", comboBox1.SelectedItem);
con.Open();
int result = com.ExecuteNonQuery();
con.Close();
if (result > 0)
{
MessageBox.Show("success");
SelectAllRecords();
}
else
{
MessageBox.Show("failed");
}
这是我的问题:我第一次更新了row2,没关系。后来我更新了第4行,它只是从第2行复制,主键除外(用户名(textbox1
))。
更新后有一种刷新表的方法:
public void SelectAllRecords()
{
com.CommandType = CommandType.Text;
com.CommandText = "SELECT * FROM login";
com.Connection = con;
con.Open();
OleDbDataAdapter adapter = new OleDbDataAdapter(com);
DataSet ds = new DataSet();
adapter.Fill(ds, "login");
dataGridView1.DataSource = null;
dataGridView1.DataSource = ds.Tables["login"];
dataGridView1.Columns[0].HeaderText = "شناسه کاربری";
dataGridView1.Columns[1].HeaderText = "کلمه عبور";
dataGridView1.Columns[2].HeaderText = "نام";
dataGridView1.Columns[3].HeaderText = "نام خانوادگی";
dataGridView1.Columns[4].HeaderText = "سطح دسترسی";
dataGridView1.Columns[5].HeaderText = "آخرین بازدید";
dataGridView1.Columns[6].HeaderText = "آخرین مطلب";
con.Close();
}
and event of dataGridView1_CellEnter:
private void dataGridView1_CellEnter(object sender, DataGridViewCellEventArgs e)
{
if (dataGridView1.Rows.Count > 0)
{
this.textBox1.Text = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[0].Value.ToString();
this.textBox2.Text = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[1].Value.ToString();
this.textBox3.Text = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[2].Value.ToString();
this.textBox4.Text = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[3].Value.ToString();
if (dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[4].Value.ToString() == "مدیر")
{
this.comboBox1.SelectedIndex = 0;
}
else
{
this.comboBox1.SelectedIndex = 1;
}
this.textBox6.Text = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[5].Value.ToString();
this.textBox7.Text = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[6].Value.ToString();
username = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[0].Value.ToString();
}
}
修改: 更多细节: 我选择行并输入值到文本框,然后单击更新按钮,它工作正常,然后我选择另一行并输入文本框的值,但它用最后输入的值更新行。
答案 0 :(得分:0)
在您的更新查询中。请使用id更新您的数据。从网格视图中获取id。