Interface SQLGeneratorIF

All Known Implementing Classes:
GenericSQLGenerator, MySQLGenerator, OracleSQLGenerator, PostgreSQLGenerator, SQLServerSQLGenerator

public interface SQLGeneratorIF
INTERNAL: Interface for generating SQL statements.
  • Method Summary

    Modifier and Type
    Method
    Description
    INTERNAL: Create a concrete SQL statement from the given abstract SQL query.
    boolean
    INTERNAL: Returns true if generator supports the functionality of OFFSET/LIMIT.
  • Method Details

    • createSQLStatement

      SQLStatementIF createSQLStatement(SQLQuery sqlquery)
      INTERNAL: Create a concrete SQL statement from the given abstract SQL query.
    • supportsLimitOffset

      boolean supportsLimitOffset()
      INTERNAL: Returns true if generator supports the functionality of OFFSET/LIMIT.