Not sure I understand what you are asking, but BulkInsert operation is specific to SqlServer. It utilized the SqlBulkCopy object which is specific to SqlServer. The same is true for SqlBatchOperation, it's specific to Sql Server. If there is a batch type command for a specific database you should be able to implement your own AbstractDatabaseOperation for the specific driver. Similar to how SqlBatchOperation is specifically implemented for Sql Server..
On Sunday, November 11, 2012 11:28:43 PM UTC-5, Dev wrote: > > Can we implement with IDbConnection for all databases > > Thanks, > Venkat > > On Friday, 9 November 2012 18:41:05 UTC+5:30, Jason Meckley wrote: >> >> BulkInsert is specific to SqlServer. It uses a SqlConnection, not an >> IDbConnection. Here is the code >> https://github.com/hibernating-rhinos/rhino-etl/blob/master/Rhino.Etl.Core/Operations/SqlBulkInsertOperation.cs#L275 >> >> On Friday, November 9, 2012 4:46:35 AM UTC-5, Dev wrote: >>> >>> Hello, >>> >>> I just want to know 'Rhino ETL will Support BulkInsert for all >>> Database(sql, oracle, mysql)' >>> >>> If support where can i start. >>> >>> Thanks >>> >> -- You received this message because you are subscribed to the Google Groups "Rhino Tools Dev" group. To view this discussion on the web visit https://groups.google.com/d/msg/rhino-tools-dev/-/_WDph9VMxaEJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rhino-tools-dev?hl=en.
