How do you call oracle bulk insert in C#?

  • Thread starter Thread starter Simon
  • Start date Start date
Simon,

OCI allows you three methods to insert - single row, multiple rows (using
arrays for bind variables) and direct load. the ODP.Net provider support
the first two of these - the Direct Path Loader interface is accessible only
through direct OCI (using C / C++, etc)

regards
roy fine
 
Back
Top