| A DAO that calls a database stored procedure over an resource adapter
using local transactions. The stored procedure takes the name of a
person and creates an account for this person returning the account id.
The stored procedure may be defined like this:
PROCEDURE CRTACCT(IN firstname VARCHAR, IN lastname VARCHAR, OUT id INTEGER)
|