-
-
Notifications
You must be signed in to change notification settings - Fork 74
Closed
Description
The ability to bulk-load data is basically a standard feature in ADO.NET. SQL Server has it. So does MySQL. And Postgres, and Oracle. And with the exception of Postgres, they all seem to do it the same way: a "Bulk Copy" class that accepts the developer's choice of a IDataReader
, a DataTable
, or a DataRow[]
as input.
FirebirdClient
still lacks this feature. With the new Firebird 4 OO API providing apis for batch data loading, could we get a Bulk Copy class added?