Generic Oracle DB Mngr

B

bentalcy

Can anyone point me (share code) to a Java wrapper (aka DB-Mngr, aka
data access object) that supports a call to Oracle SPs.

Something that would basicly implement:

Interface DatabaseMgnr
{
//supports select
ResultSet ExecSP(String pKgAndprocName, Collection parameters);

//supports update\insert\delete
void ExecSP(pKgAndprocName, Collection parameters);
}
 
R

Raymond DeCampo

Can anyone point me (share code) to a Java wrapper (aka DB-Mngr, aka
data access object) that supports a call to Oracle SPs.

Something that would basicly implement:

Interface DatabaseMgnr
{
//supports select
ResultSet ExecSP(String pKgAndprocName, Collection parameters);

//supports update\insert\delete
void ExecSP(pKgAndprocName, Collection parameters);
}

JDBC supports stored procedures via the CallableStatement interface.
Oracle provides a JDBC driver.

HTH,
Ray
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,780
Messages
2,569,608
Members
45,249
Latest member
KattieCort

Latest Threads

Top