Package oracle.pg.rdbms.pgql
Interface PgqlSqlQueryTrans
-
- All Superinterfaces:
PgqlSqlTrans
public interface PgqlSqlQueryTrans extends PgqlSqlTrans
Holds the SQL translation of a PGQL query.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface oracle.pg.rdbms.pgql.PgqlSqlTrans
PgqlSqlTrans.TranslationType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.Object>
getSqlBvList()
Returns a list of Bind Values to be used with this SQL translation.java.lang.String
getSqlTranslation()
Returns the SQL string for the PGQL to SQL translation.-
Methods inherited from interface oracle.pg.rdbms.pgql.PgqlSqlTrans
getTranslationType
-
-
-
-
Method Detail
-
getSqlTranslation
java.lang.String getSqlTranslation()
Returns the SQL string for the PGQL to SQL translation.- Returns:
- the SQL query string
-
getSqlBvList
java.util.List<java.lang.Object> getSqlBvList()
Returns a list of Bind Values to be used with this SQL translation. The first element in the list should set at position 1 in a JDBC PreparedStatement created from this SQL translation.- Returns:
- the list of bind values for this query translation
-
-