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.

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There appears to be an
IfxBulkCopyclass 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
SqlBulkCopyclass available for SQL Server. This will likely mean it takes aDataTableor anIDataReaderimplementation 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.