I'm about to develop an app to load data from a file into the DB. I have used sqlLoader to do that through the command-Line and it works great, but now I want to have a GUI for that process.
I was thinking about calling sqlLoader from java with Runtime.exec() but I think I'll be limiting my program to windows only, so no portability.
I would like to know if there's a more efficient/native way to load data from file through java into the DB. Something like:
FILE -> JAVA - > ORACLE.
Any advise is most welcomed !
Cheers,