> Hello
>
[quoted text clipped - 13 lines]
> commit;
> end;
1. Define a stored procedure in your schema using SQL. You need to do
this only once. Consult a good Oracle book to learn how to define
stored procedures.
2. In your Java code, create a CallableStatement object using
Connection.prepareCall.
3. Set the parameters of the CallableStatement.
4. Execute the CallableStatement.
5. Fetch the results, if any.
David Harper
Cambridge, England