What are stored procedures? How to call stored procedures using JDBC program?
Answers
Answered by
0
PL/SQL stored procedures are called from within JDBC programs by means of the prepareCall() method of the Connection object created above. A call to this method takes variable bind parameters as input parameters as well as output variables and creates an object instance of the CallableStatement class
Similar questions