Generic Oracle DB Mngr



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);
}

.