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