The JDBC CallableStatement is used to execute the store procedure and functions. CallableStatement interface provides the methods to execute the store procedure and functions. We can get a statement object by invoking the prepareCall() method of Connection interface.
Syntax: CallableStatement callableStatement = conn.prepareCall(“{call procedurename(?,?…?)}”);
No comments:
Post a Comment