Interface SQLGeneratorIF
- All Known Implementing Classes:
GenericSQLGenerator,MySQLGenerator,OracleSQLGenerator,PostgreSQLGenerator,SQLServerSQLGenerator
public interface SQLGeneratorIF
INTERNAL: Interface for generating SQL statements.
-
Method Summary
Modifier and TypeMethodDescriptioncreateSQLStatement(SQLQuery sqlquery) INTERNAL: Create a concrete SQL statement from the given abstract SQL query.booleanINTERNAL: Returns true if generator supports the functionality of OFFSET/LIMIT.
-
Method Details
-
createSQLStatement
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.
-