我不熟悉使用数据库。我创建了一个简单的表单应用程序来显示此数据表,但是,我无法将数据导入数据库,以便表单显示它。我最初只有1名员工在这里列出,他出现在我的申请表中。我刚刚将最后3名员工添加到此表视图中,但如果我运行该应用程序,则只显示原始员工(ID 1)。我如何承诺最后3名员工'信息到数据库?我在Google上搜索了一些信息并找到了select * from dbo.EmployeeInfo
查询并运行它,它显示了员工信息,但似乎并没有用新信息更改数据库。谢谢。
答案 0 :(得分:2)
我也被困在这里。 我做的是 - 1)更新了值,在更新了最后的值后,我按了Enter
这似乎对我有用。 键盘上的Enter按钮使生活变得简单。 :)
答案 1 :(得分:0)
我创建了一个带有GridView的表单,并用数据源绑定它,它显示了上面显示的表单中的数据......
为输入添加了一些文本框......
下面的代码显示了它如何将数据源与gridview绑定,以及如何使用按钮单击事件中的文本框输入永久插入数据
private void Form1_Load(object sender, EventArgs e)
{
// using a gridview by binding the dataset with it at form load
//It creates the table for you with the relevant columns
//and fills it with this line of code
this.employeesTableAdapter.Fill(this.practiceDBDataSet.Employees);
}
private void btnSubmit_Click(object sender, EventArgs e)
{
//on add user button click
//I access the tableadpater created by the dataset to be accessed by the gridview
//the txt.... represents my fields names according to the database
employeesTableAdapter.Insert(txtName.Text, txtSurname.Text, txtAge.Text, Convert.ToInt32(txtAge.Text));
}
然后txt ....适用于数据库所需的数据,您可以从中获取输入.........