Ash Grove wrote:
> I can only call one function (from the application)
> per transaction, right?
Incorrect. Transactions are delimited by commits or rollbacks, not by
function calls or SQL statements (more correctly, DML.) If you want to
control your commit points, tell JDBC to "conn.setAutocommit(false)".
--
Guy Rouillier