What is the use of callablestatement? Name the method, which is used to prepare a callablestatement.
Answer Posted / Ankur Kumar
A CallableStatement in JDBC allows you to execute stored procedures and functions on the database server. The method used to prepare a CallableStatement is `prepareCall()`. This method takes a String argument representing the callable statement as a SQL string.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers