Class SqlPagingQueryUtils

java.lang.Object
org.springframework.batch.item.database.support.SqlPagingQueryUtils

public class SqlPagingQueryUtils extends Object
Utility class that generates the actual SQL statements used by query providers.
Since:
2.0
Author:
Thomas Risberg, Dave Syer, Michael Minella, Mahmoud Ben Hassine
  • Constructor Details

    • SqlPagingQueryUtils

      public SqlPagingQueryUtils()
  • Method Details

    • generateLimitSqlQuery

      public static String generateLimitSqlQuery(AbstractSqlPagingQueryProvider provider, boolean remainingPageQuery, String limitClause)
      Generate SQL query string using a LIMIT clause
      Parameters:
      provider - AbstractSqlPagingQueryProvider providing the implementation specifics
      remainingPageQuery - is this query for the remaining pages (true) as opposed to the first page (false)
      limitClause - the implementation specific limit clause to be used
      Returns:
      the generated query
    • generateLimitGroupedSqlQuery

      @Deprecated public static String generateLimitGroupedSqlQuery(AbstractSqlPagingQueryProvider provider, boolean remainingPageQuery, String limitClause)
      Generate SQL query string using a LIMIT clause
      Parameters:
      provider - AbstractSqlPagingQueryProvider providing the implementation specifics
      remainingPageQuery - is this query for the remaining pages (true) as opposed to the first page (false)
      limitClause - the implementation specific limit clause to be used
      Returns:
      the generated query
    • generateLimitGroupedSqlQuery

      public static String generateLimitGroupedSqlQuery(AbstractSqlPagingQueryProvider provider, String limitClause)
      Generate SQL query string using a LIMIT clause
      Parameters:
      provider - AbstractSqlPagingQueryProvider providing the implementation specifics
      limitClause - the implementation specific limit clause to be used
      Returns:
      the generated query
    • generateTopSqlQuery

      public static String generateTopSqlQuery(AbstractSqlPagingQueryProvider provider, boolean remainingPageQuery, String topClause)
      Generate SQL query string using a TOP clause
      Parameters:
      provider - AbstractSqlPagingQueryProvider providing the implementation specifics
      remainingPageQuery - is this query for the remaining pages (true) as opposed to the first page (false)
      topClause - the implementation specific top clause to be used
      Returns:
      the generated query
    • generateGroupedTopSqlQuery

      public static String generateGroupedTopSqlQuery(AbstractSqlPagingQueryProvider provider, boolean remainingPageQuery, String topClause)
      Generate SQL query string using a TOP clause
      Parameters:
      provider - AbstractSqlPagingQueryProvider providing the implementation specifics
      remainingPageQuery - is this query for the remaining pages (true) as opposed to the first page (false)
      topClause - the implementation specific top clause to be used
      Returns:
      the generated query
    • generateRowNumSqlQuery

      public static String generateRowNumSqlQuery(AbstractSqlPagingQueryProvider provider, boolean remainingPageQuery, String rowNumClause)
      Generate SQL query string using a ROW_NUM condition
      Parameters:
      provider - AbstractSqlPagingQueryProvider providing the implementation specifics
      remainingPageQuery - is this query for the remaining pages (true) as opposed to the first page (false)
      rowNumClause - the implementation specific row num clause to be used
      Returns:
      the generated query
    • generateRowNumSqlQuery

      public static String generateRowNumSqlQuery(AbstractSqlPagingQueryProvider provider, String selectClause, boolean remainingPageQuery, String rowNumClause)
      Generate SQL query string using a ROW_NUM condition
      Parameters:
      provider - AbstractSqlPagingQueryProvider providing the implementation specifics
      selectClause - String containing the select portion of the query.
      remainingPageQuery - is this query for the remaining pages (true) as opposed to the first page (false)
      rowNumClause - the implementation specific row num clause to be used
      Returns:
      the generated query
    • buildSortClause

      public static String buildSortClause(AbstractSqlPagingQueryProvider provider)
      Generates ORDER BY attributes based on the sort keys.
      Parameters:
      provider - the AbstractSqlPagingQueryProvider to be used for used for pagination.
      Returns:
      a String that can be appended to an ORDER BY clause.
    • buildSortClause

      public static String buildSortClause(Map<String,Order> sortKeys)
      Generates ORDER BY attributes based on the sort keys.
      Parameters:
      sortKeys - Map where the key is the name of the column to be sorted and the value contains the Order.
      Returns:
      a String that can be appended to an ORDER BY clause.
    • buildSortConditions

      public static void buildSortConditions(AbstractSqlPagingQueryProvider provider, StringBuilder sql)
      Appends the where conditions required to query for the subsequent pages.
      Parameters:
      provider - the AbstractSqlPagingQueryProvider to be used for pagination.
      sql - StringBuilder containing the sql to be used for the query.