命名从 Oracle 返回的表
我正在使用 .NET 中的 Oracle 数据库来获取从过程返回的多个表(作为多个 Out 游标)。该数据被插入到DataSet
中。我遇到的问题是表被命名为 Table
、Table1
、Table2
等。是否有某种方法(通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这可能是您所需要的
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