Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.
Which of the following statement is false regarding call to stored procedure from JDBC.
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.
Related Answered Questions
Related Open Questions