如何使用 SqlDataAdapter 和 DataTable 将新列插入到数据库表中?
在我的.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能这样做。
.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.