Class PreparedStatementImpl

  • All Implemented Interfaces:
    AutoCloseable, PreparedStatement, Statement, Wrapper, TeiidPreparedStatement, TeiidStatement
    Direct Known Subclasses:
    CallableStatementImpl

    public class PreparedStatementImpl
    extends StatementImpl
    implements TeiidPreparedStatement

    Instances of PreparedStatement contain a SQL statement that has already been compiled. The SQL statement contained in a PreparedStatement object may have one or more IN parameters. An IN parameter is a parameter whose value is not specified when a SQL statement is created. Instead the statement has a placeholder for each IN parameter.

    The PreparedStatementImpl object wraps the server's PreparedStatement object. The methods in this class are used to set the IN parameters on a server's preparedstatement object.