如何使用 SqlDataAdapter 和 DataTable 将新列插入到数据库表中?

发布于 2024-10-16 15:28:36 字数 512 浏览 5 评论 0原文

在我的.NET 程序中,我想通过插入新列来修改数据库表的结构。但我不想通过 ADO.NET 在数据库上运行“ALTER TABLE .....”命令来完成此操作。我想通过向我的数据表添加新列来做到这一点。因此,当我更新关联的 tableAdapter 时,物理表结构将会发生变化。

我期望能够工作的代码是这样的:

        SqlCommand cmd = new SqlCommand("SELECT * FROM EMPLOYEE", conn);
        SqlDataAdapter adapter = new SqlDataAdapter(cmd);
        DataTable dt = new DataTable();
        adapter.Fill(dt);
        dt.Columns.Add(new DataColumn("BirthDate"));
        adapter.Update(dt);

但它没有。

如果有可能的话,我该怎么做?

In my .NET program, I want to modify database table's structure by inserting new column. But I do NOT want to do it by running "ALTER TABLE ....." command on database by ADO.NET. I want to do it by adding new column to my datatable. So when I update the associated tableAdapter, physical table structure is going to change.

The code, which I expected to work was like this:

        SqlCommand cmd = new SqlCommand("SELECT * FROM EMPLOYEE", conn);
        SqlDataAdapter adapter = new SqlDataAdapter(cmd);
        DataTable dt = new DataTable();
        adapter.Fill(dt);
        dt.Columns.Add(new DataColumn("BirthDate"));
        adapter.Update(dt);

But it did not.

If it is possible in any way, how can I do it?

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

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

发布评论

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

评论(1

2024-10-23 15:28:36

你不能这样做。

.NET 数据表只是磁盘上数据库结构的表示 - ADO.NET 数据表代码中不存在支持生成更新基础表的功能。更改数据表的结构。

您必须使用ALTER TABLE ..... SQL 语句来实现您正在寻找的内容 - 恐怕没有办法解决这个问题。

You cannot do this.

The .NET datatable is only a representation of the on-disk database structures - there's no functionality in the ADO.NET DataTable code to support generating or updating the underlying tables when you change the structure of your DataTable.

You will have to use ALTER TABLE ..... SQL statement to achieve what you're looking for - no way around that, I'm afraid.

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