命名从 Oracle 返回的表

发布于 2024-11-25 14:52:19 字数 232 浏览 1 评论 0原文

我正在使用 .NET 中的 Oracle 数据库来获取从过程返回的多个表(作为多个 Out 游标)。该数据被插入到DataSet中。我遇到的问题是表被命名为 TableTable1Table2 等。是否有某种方法(通过 Oracle 数据适配器或其他方式)在这些表进入DataSet之前重命名它们?

I'm using the Oracle data libraries in .NET to get multiple tables returned from a Procedure (as multiple Out cursors). This data is being inserted into a DataSet. The problem I'm having is that the tables are named Table, Table1, Table2, etc. Is there some way (through the Oracle data adapter or otherwise) to rename these tables before they go into the DataSet?

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

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

发布评论

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

评论(1

风和你 2024-12-02 14:52:19

我认为这可能是您所需要的 DataAdapter.TableMappings.Add("Table","MyTableName")

请参阅:
http://msdn.microsoft.com/en -us/library/system.data.common.dataadapter.tablemappings.aspx

I think this may be what you need DataAdapter.TableMappings.Add("Table","MyTableName")

See:
http://msdn.microsoft.com/en-us/library/system.data.common.dataadapter.tablemappings.aspx

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