在 C# Windows 窗体应用程序中搜索 Microsoft Access 记录?

发布于 2024-11-01 02:17:37 字数 494 浏览 0 评论 0原文

如何在 C# Windows 窗体应用程序中搜索 Microsoft Access 记录?

代码:

    private void btnsearch_Click(object sender, EventArgs e)
    {
        dataAdapter = new OleDbDataAdapter("SELECT * from  tblStudents WHERE studid='" + 
                                             txtstudid.Text + "' ",
                                           conn);
        dataset = new DataSet();

        dataAdapter.Fill(dataset);
        dataGridView1.DataSource = dataset.Tables[0];
    }

How to search for a Microsoft Access record in a C# Windows Forms application?

Code:

    private void btnsearch_Click(object sender, EventArgs e)
    {
        dataAdapter = new OleDbDataAdapter("SELECT * from  tblStudents WHERE studid='" + 
                                             txtstudid.Text + "' ",
                                           conn);
        dataset = new DataSet();

        dataAdapter.Fill(dataset);
        dataGridView1.DataSource = dataset.Tables[0];
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月依秋水 2024-11-08 02:17:37
//BindingSource to sync DataTable and DataGridView
BindingSource bSource = new BindingSource();

//set the BindingSource DataSource
bSource.DataSource = ds.Tables[0];

//set the DataGridView DataSource
dataGridView1.DataSource = bSource;

要将更改返回到数据库中,您所需要做的就是使用 DataTable 作为参数调用 OleDbDataAdapterUpdate()来实现这一目标。

da.Update(ds.Tables[0]);
//BindingSource to sync DataTable and DataGridView
BindingSource bSource = new BindingSource();

//set the BindingSource DataSource
bSource.DataSource = ds.Tables[0];

//set the DataGridView DataSource
dataGridView1.DataSource = bSource;

To get the changes back into the database, all you have to do is call the Update() of the OleDbDataAdapter with the DataTable as the argument to accomplish this.

da.Update(ds.Tables[0]);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文