类 FirebirdDialect

    • 构造器详细资料

      • FirebirdDialect

        public FirebirdDialect()
    • 方法详细资料

      • getLimitString

        public String getLimitString​(String sql,
                                     boolean hasOffset)
        从类复制的说明: Dialect
        Apply a limit clause to the query.

        Typically dialects utilize variable limit clauses when they support limits. Thus, when building the select command we do not actually need to know the limit or the offset since we will just be using placeholders.

        Here we do still pass along whether or not an offset was specified so that dialects not supporting offsets can generate proper exceptions. In general, dialects will override one or the other of this method and Dialect.getLimitString(String, int, int).

        覆盖:
        getLimitString 在类中 InterbaseDialect
        参数:
        sql - The query to which to apply the limit.
        hasOffset - Is the query requesting an offset?
        返回:
        the modified SQL
      • bindLimitParametersFirst

        public boolean bindLimitParametersFirst()
        从类复制的说明: Dialect
        Does the LIMIT clause come at the start of the SELECT statement, rather than at the end?
        覆盖:
        bindLimitParametersFirst 在类中 InterbaseDialect
        返回:
        true if limit parameters should come before other parameters
      • bindLimitParametersInReverseOrder

        public boolean bindLimitParametersInReverseOrder()
        从类复制的说明: Dialect
        ANSI SQL defines the LIMIT clause to be in the form LIMIT offset, limit. Does this dialect require us to bind the parameters in reverse order?
        覆盖:
        bindLimitParametersInReverseOrder 在类中 InterbaseDialect
        返回:
        true if the correct order is limit, offset