我用 sql 数据库制作了一个 C# 程序。我使用数据源中的拖放创建了表单。但是当我按下保存按钮时,数据不会保存在数据库中。
自动创建的代码是
namespace test3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void tableTest3BindingNavigatorSaveItem_Click(object sender, EventArgs e)
{
Validate();
this.tableTest3BindingSource.EndEdit();
this.tableAdapterManager.UpdateAll(this.test3DataSet);
//this.tableTest3TableAdapter.Update(this.test3DataSet.TableTest3); // I tried to add this line but it also not work !!
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'test3DataSet.TableTest3' table. You can move, or remove it, as needed.
this.tableTest3TableAdapter.Fill(this.test3DataSet.TableTest3);
}
}
}
我是否必须添加一些代码或更改属性,顺便说一下,我按照网站中的步骤创建了数据库,它必须是正确的。