Which of the following statement is false regarding call to stored procedure from JDBC.

A) Create a CallableStatement object.
B) A CallableStatement object contains a call to a stored procedure.
C) The execution call should be like CallableStatement cs = con.prepareCall("{call SHOW_SUPPLIERS}");
D) We need not make an instance of the Connection class before making a Callable statement.
Explanation: The callable statement is prepared based on the connection object only check option c, where con is an instance of the Connection object.

Showing Answers 1 - 1 of 1 Answers

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions