dursun
dursun

Reputation: 1846

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 sqlldr in java.

Upvotes: 1

Views: 2895

Answers (1)

user330315
user330315

Reputation:

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).

Upvotes: 2

Related Questions