类 InsertStatement

    • 构造器详细资料

      • InsertStatement

        public InsertStatement()
    • 方法详细资料

      • getStatementType

        public int getStatementType()
        从接口复制的说明: Statement
        Return the main token type representing the type of this statement.
        返回:
        The corresponding token type.
      • needsExecutor

        public boolean needsExecutor()
        从接口复制的说明: Statement
        Does this statement require the StatementExecutor?

        Essentially, at the JDBC level, does this require an executeUpdate()?
        返回:
        True if this statement should be handed off to the StatementExecutor to be executed; false otherwise.
      • validate

        public void validate()
                      throws QueryException
        Performs detailed semantic validation on this insert statement tree.
        抛出:
        QueryException - Indicates validation failure.
      • getIntoClause

        public IntoClause getIntoClause()
        Retrieve this insert statement's into-clause.
        返回:
        The into-clause
      • getSelectClause

        public SelectClause getSelectClause()
        Retrieve this insert statement's select-clause.
        返回:
        The select-clause.