SQL*Loader & VB.NET

cBarry263

Active member
Joined
Oct 29, 2005
Messages
42
Location
Maryland
Programming Experience
Beginner
Does anyone know if it is possible to call Oracle's SQL*Loader from a VB.NET application?? Much thanks.
 
any dos program can be called using:

Process.Start("appname", "arguments") ...

look up Process.Start()

DO NOT put the arguments in the same string as the exe name - this is not Interaction.Shell from VB6 :)
 
Back
Top