The ________ interface is used to execute SQL stored procedures.
- CallableStatement
- Connection
- PreparedStatement
- Statement
In JDBC, the CallableStatement interface is used to execute SQL stored procedures. It allows you to call stored procedures that may take parameters and return values. Statement is used for executing regular SQL statements, Connection is used for establishing database connections, and PreparedStatement is used for executing parameterized SQL queries.
Loading...
Related Quiz
- ________ allows you to traverse the collection, access the element, and insert
- What is the key difference between the poll() and remove() methods when used with a Queue in Java?
- When would you prefer byte streams over character streams while performing I/O operations in Java?
- The ________ interface of the JDBC API provides cursor support, which allows forward and backward navigation through the result set.
- The ________ method of ExecutorService attempts to stop all actively executing tasks and halts the processing of waiting tasks.