.NET Winforms BindingNavigator 添加和删除按钮不起作用
.NET Winforms BindingNavigator Add and Delete buttons do not work
在我的 VS2015 Winforms
应用程序上,我创建了一个 DataGridView
和一个 BindingNavigator
。以下代码成功显示了 DataGridView 中的数据,我可以使用 BindingNavigator 导航数据行。但是当我尝试使用 BindingNavigator 上的内置 Add/Delete 按钮 add/delete 一行时,数据库不会反映这些更改。
代码:
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
SqlDataAdapter dadapter;
DataSet dset;
BindingSource bs;
string connstring = "database=emp;server=.;user=sa;password=wintellect";
private void Form2_Load(object sender, EventArgs e)
{
dadapter = new SqlDataAdapter("select * from emp_detail", connstring);
dset = new DataSet();
dadapter.Fill(dset);
bs = new BindingSource();
bs.DataSource = dset.Tables[0].DefaultView;
bindingNavigator1.BindingSource = bs;
dataGridView1.DataSource = bs;
}
}
您忘记将更改保存到数据库。当您添加、删除或编辑 DataGridView
的项目时,所有更改都是在内存中的基础数据源中进行的,要持久保存更改,您应该将这些更改保存到数据库中。
您可以使用适配器的 SqlCommandBuilder
, then call Update
方法为 SqlDataAdapter
创建有效的 InsertCommand
、DeleteCommand
和 UpdateCommand
以保存您的 DataTable
到数据库:
SqlDataAdapter adapter;
DataSet table;
BindingSource bs;
private void Form1_Load(object sender, EventArgs e)
{
var connection = "Your Connection String";
var command = "SELECT * FROM SomeTable"
adapter = new SqlDataAdapter(command, connstring);
this.components.Add(adapter);
table= new DataTable();
//This line creates valid insert, update and delete commands for data adapter
var commandBuilder = new SqlCommandBuilder(myTableAdapter);
dadapter.Fill(table);
bs = new BindingSource();
bs.DataSource = table;
bindingNavigator1.BindingSource = bs;
dataGridView1.DataSource = bs;
}
private void SaveButton_Click(object sender, EventArgs e)
{
this.Validate();
this.dataGridView1.EndEdit();
adapter.Update(table);
}
注意:我之所以这样做this.components.Add(adapter);
是因为我们不应该忘记处理SqlDataAdapter
。通过将其添加到表单的 components
容器中,它将被自动处理。
如果您创建的表单没有设计器,您可能没有 components
容器。在这种情况下,通过覆盖表单的 Dispose
或在 Closing
事件中手动处理适配器。
在我的 VS2015 Winforms
应用程序上,我创建了一个 DataGridView
和一个 BindingNavigator
。以下代码成功显示了 DataGridView 中的数据,我可以使用 BindingNavigator 导航数据行。但是当我尝试使用 BindingNavigator 上的内置 Add/Delete 按钮 add/delete 一行时,数据库不会反映这些更改。
代码:
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
SqlDataAdapter dadapter;
DataSet dset;
BindingSource bs;
string connstring = "database=emp;server=.;user=sa;password=wintellect";
private void Form2_Load(object sender, EventArgs e)
{
dadapter = new SqlDataAdapter("select * from emp_detail", connstring);
dset = new DataSet();
dadapter.Fill(dset);
bs = new BindingSource();
bs.DataSource = dset.Tables[0].DefaultView;
bindingNavigator1.BindingSource = bs;
dataGridView1.DataSource = bs;
}
}
您忘记将更改保存到数据库。当您添加、删除或编辑 DataGridView
的项目时,所有更改都是在内存中的基础数据源中进行的,要持久保存更改,您应该将这些更改保存到数据库中。
您可以使用适配器的 SqlCommandBuilder
, then call Update
方法为 SqlDataAdapter
创建有效的 InsertCommand
、DeleteCommand
和 UpdateCommand
以保存您的 DataTable
到数据库:
SqlDataAdapter adapter;
DataSet table;
BindingSource bs;
private void Form1_Load(object sender, EventArgs e)
{
var connection = "Your Connection String";
var command = "SELECT * FROM SomeTable"
adapter = new SqlDataAdapter(command, connstring);
this.components.Add(adapter);
table= new DataTable();
//This line creates valid insert, update and delete commands for data adapter
var commandBuilder = new SqlCommandBuilder(myTableAdapter);
dadapter.Fill(table);
bs = new BindingSource();
bs.DataSource = table;
bindingNavigator1.BindingSource = bs;
dataGridView1.DataSource = bs;
}
private void SaveButton_Click(object sender, EventArgs e)
{
this.Validate();
this.dataGridView1.EndEdit();
adapter.Update(table);
}
注意:我之所以这样做this.components.Add(adapter);
是因为我们不应该忘记处理SqlDataAdapter
。通过将其添加到表单的 components
容器中,它将被自动处理。
如果您创建的表单没有设计器,您可能没有 components
容器。在这种情况下,通过覆盖表单的 Dispose
或在 Closing
事件中手动处理适配器。