Open GoogleCodeExporter opened 9 years ago
There isn't any at this time. Do you have a suggested API?
Original comment by mkleehammer
on 6 Feb 2011 at 7:42
The SqlBulkCopy object described in
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopy.aspx
is the most frequently used interface for bulk inserts to SQL Server and is
part of .Net. Unfortunately the implementation details behind this object are
not documented, and another part of MSDN states that ODBC does not directly
support bulk copy operations provided by this object
(http://msdn.microsoft.com/en-us/library/ms130792.aspx). One "work around" I'm
aware of involved building C code to assemble rows into a structure that could
be sent to a service running under Windows and that could be easily assembled
into a DataTable and sent through SqlBulkCopy.
Original comment by amsi...@gmail.com
on 7 Feb 2011 at 11:29
http://msdn.microsoft.com/en-us/library/ms712471%28v=vs.85%29.aspx
I think we're looking for something similar to an insert statement that calls
this interface and allows for >1 row per round-trip.
Original comment by pedri...@gmail.com
on 18 Feb 2011 at 8:57
Original issue reported on code.google.com by
pedri...@gmail.com
on 5 Jan 2011 at 8:55