Class LogicalCallableStatement

All Implemented Interfaces:
AutoCloseable, CallableStatement, PreparedStatement, Statement, Wrapper
Direct Known Subclasses:
LogicalCallableStatement42

public class LogicalCallableStatement extends LogicalPreparedStatement implements CallableStatement
A wrapper class for a physical Derby callable statement.

The idea behind the logical prepared statement is to allow reuse of the physical callable statement. In general the logical entity will forward all calls to the physical entity. A few methods have special implementations, the most important one being LogicalStatementEntity.close(). Each method will check that the logical statement is still open before the call is forwarded to the underlying physical statement.

See Also: