Java / JDBC
How do you execute stored procedures and functions using JDBC?
Using Callable statement interface, the stored procedure and the functions can be executed.
CallableStatement myStatement = conn.prepareCall ("{call myDbStoredProc (?,?)}");
More Related questions...