Question : how to capture out parameter from storedProcedure in java

I am calling Stored Procedure from JAVA application. If the stored procedure has a OUT parameter, how do we capture it.

Answer : how to capture out parameter from storedProcedure in java

After execution:
1:
String outParam = cs.getString(1); // OUT parameter 
Random Solutions  
 
programming4us programming4us