01: package liquibase.database.sql;
02:
03: import liquibase.database.Database;
04:
05: import java.sql.CallableStatement;
06: import java.sql.SQLException;
07:
08: public interface CallableSqlStatement extends SqlStatement {
09:
10: /**
11: * Create a callable statement in this connection. Allows implementations to use
12: * CallableStatements.
13: *
14: * @return a callable statement
15: * @throws java.sql.SQLException there is no need to catch SQLExceptions
16: * that may be thrown in the implementation of this method.
17: * The JdbcTemplate class will handle them.
18: */
19: CallableStatement createCallableStatement(Database database)
20: throws SQLException;
21: }
|