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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *