InterviewSolution
Saved Bookmarks
| 1. |
How Do You Call A Stored Procedure From Java? |
|
Answer» You can call a STORED PROCEDURE USING Callable statements CALLABLESTATEMENT cs = con.prepareCall("{call StoredProc}"); RESULTSET rs = cs.executeQuery(); You can call a stored procedure using Callable statements CallableStatement cs = con.prepareCall("{call StoredProc}"); ResultSet rs = cs.executeQuery(); |
|