使用 Informix 进行 SqlBulkCopy
有没有办法将 SqlBulkCopy
类与 Informix 数据库一起使用,或者任何替代方案,因为我确实需要在 Informix 数据库中使用此类行为。
SO 6856004 中描述了我尝试做的事情。
编辑:
我根本找不到IfxBulkCopy
。
Is there any way to use the SqlBulkCopy
class with Informix database, or any alternative, because really I need this class behavior with my Informix database.
What I try to do is described in SO 6856004.
EDIT :
I don't find IfxBulkCopy
at all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Informix 的 ADO.NET 提供程序中似乎有一个
IfxBulkCopy
类。类文档位于:http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.net_cc.doc/dqx1db2bulkcopyclass.htm
如果他们的提供者是一个好的类,该类的用法即使不相同,也应该与 SQL Server 可用的
SqlBulkCopy
类非常相似。这可能意味着它需要DataTable
或IDataReader
实现来实现WriteToServer
。请记住,它位于“IBM Data Server Provider for .NET”内,这可能与标准 ADO.NET 提供程序内容所在的位置不同。
There appears to be an
IfxBulkCopy
class in the ADO.NET provider for Informix. The class documentation is here:http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.net_cc.doc/dqx1db2bulkcopyclass.htm
If their provider is a good one, the usage of this class should be very similar, if not the same, as the
SqlBulkCopy
class available for SQL Server. This will likely mean it takes aDataTable
or anIDataReader
implementation toWriteToServer
.Bear in mind it is housed within the "IBM Data Server Provider for .NET", which might be different to where the standard ADO.NET provider stuff is housed.