类 SqlOperation

    • 方法详细资料

      • onCompileInternal

        protected void onCompileInternal()
        Hook method that subclasses may override to post-process compilation. This implementation does nothing.
        另请参阅:
        compileInternal()
      • getParsedSql

        protected ParsedSql getParsedSql()
        Obtain a parsed representation of this operation's SQL statement.

        Typically used for named parameter parsing.

      • newPreparedStatementCreator

        protected final PreparedStatementCreator newPreparedStatementCreator​(String sqlToUse,
                                                                             Object[] params)
        Return a PreparedStatementCreator to perform an operation with the given parameters.
        参数:
        sqlToUse - the actual SQL statement to use (if different from the factory's, for example because of named parameter expanding)
        params - the parameter array (may be null)