类 DB2400V7R3Dialect

  • 所有已实现的接口:
    ConversionContext

    public class DB2400V7R3Dialect
    extends DB2400Dialect
    An SQL dialect for i. This class provides support for DB2 Universal Database for i V7R1 and later, also known as DB2/400.
    作者:
    Pierrick Rouxel (pierrickrouxel)
    • 构造器详细资料

      • DB2400V7R3Dialect

        public DB2400V7R3Dialect()
    • 方法详细资料

      • supportsSequences

        public boolean supportsSequences()
        从类复制的说明: Dialect
        Does this dialect support sequences?
        覆盖:
        supportsSequences 在类中 DB2400Dialect
        返回:
        True if sequences supported; false otherwise.
      • getQuerySequencesString

        public String getQuerySequencesString()
        从类复制的说明: Dialect
        Get the select command used retrieve the names of all sequences.
        覆盖:
        getQuerySequencesString 在类中 DB2400Dialect
        返回:
        The select command; or null if sequences are not supported.
        另请参阅:
        SchemaUpdate
      • getLimitString

        public String getLimitString​(String sql,
                                     int offset,
                                     int limit)
        从类复制的说明: Dialect
        Given a limit and an offset, apply the limit clause to the query.
        覆盖:
        getLimitString 在类中 DB2400Dialect
        参数:
        sql - The query to which to apply the limit.
        offset - The offset of the limit
        limit - The limit of the limit ;)
        返回:
        The modified query statement with the limit applied.