Q. Which of the following code segment would execute the stored procedure "getPassword()" located in a database server?
β
Correct Answer: (D)
CallableStatement cab = con.prepareCall("{call getPassword()}"); cab.executeQuery();
You must be Logged in to update hint/solution