因此我尝试使用连接到数据库的DataGridView,使用一些文本框和一个按钮来向数据库添加更多数据。我可以让它更新表,但无法正确更新数据库。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ParametSampleApp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'database1DataSet.Table' table. You can move, or remove it, as needed.
this.tableTableAdapter1.Fill(this.database1DataSet.Table);
}
private void btnAdd_Click(object sender, EventArgs e)
{
DataRow newUserRow = database1DataSet.Tables["Table"].NewRow();
newUserRow["FirstName"] = txtFName.Text;
newUserRow["LastName"] = txtLName.Text;
newUserRow["PostCode"] = txtPostcode.Text;
newUserRow["OperatingSystem"] = txtOS.Text;
database1DataSet.Tables["Table"].Rows.Add(newUserRow);
this.tableTableAdapter1.Update(this.database1DataSet.Table);
}
}
}
如果您需要整个项目的ZIP以便更容易理解,我可以轻松上传和发送。
值得注意的是,我使用DataGridView GUI来设置连接,因此我的DataSet,BindingSource和TableTableAdaper也是自动创建的。
答案 0 :(得分:0)
我认为这就是你要找的东西,但如果没有抱歉,我无能为力。
private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
bindingSource1.EndEdit();
DataTable dt = (DataTable)bindingSource1.DataSource;
tableTableAdapter1.Update(dt);
}