Is there a sqlldr api for java
I want to use sqlldr from a java program, but I dont want to invoke it using "Runtime.exec". is there such api for sq开发者_Python百科lldr in java.
No, there is no native API to call SQL*Loader functionality from Java.
The only option you have is to use Runtime.exec() (or a ProcessBuilder).
精彩评论