Uses of Class
net.pricefx.domain.DMSqlQuery
-
Packages that use DMSqlQuery Package Description net.pricefx.domain Defines set of domain object classes.net.pricefx.formulaengine Provides Formula Engine API classes. -
-
Uses of DMSqlQuery in net.pricefx.domain
Methods in net.pricefx.domain that return DMSqlQuery Modifier and Type Method Description DMSqlQuery
DMSqlQuery. addSource(DMQuery sourceQuery)
Adds aDMQuery
as a source for this SQL query.DMSqlQuery
DMSqlQuery. addSource(DMQuery sourceQuery, String alias)
Adds aDMSqlQuery
as a source for this SQL query.DMSqlQuery
DMSqlQuery. addSource(DatamartContext.Query sourceQuery)
Adds aDatamartContext.Query
as a source for this SQL query.DMSqlQuery
DMSqlQuery. addSource(DatamartContext.Query sourceQuery, String alias)
Adds aDatamartContext.Query
as a source for this SQL query.DMSqlQuery
DMSqlQuery. addWith(String withClause, Object... bindings)
Adds a with clause to the SQL query, where every "?" char gets replaced by the values provided as additional parameters.DMSqlQuery
DMSqlQuery. addWith(String withClause, String alias, Object... bindings)
Adds a with clause to the SQL query, where every "?" char gets replaced by the values provided as additional parameters.DMSqlQuery
DMSqlQuery. setHash(String hash)
DMSqlQuery
DMSqlQuery. setQuery(String sql, Object... bindings)
Sets the main SQL SELECT clause of this query, where every "?" char gets replaced by the values provided as additional parameters. -
Uses of DMSqlQuery in net.pricefx.formulaengine
Methods in net.pricefx.formulaengine that return DMSqlQuery Modifier and Type Method Description DMSqlQuery
DatamartContext. newSqlQuery()
Instantiates a query object for building SQL statements from source queries, with clauses and parameter bindings.Methods in net.pricefx.formulaengine with parameters of type DMSqlQuery Modifier and Type Method Description Matrix2D
DatamartContext. executeSqlQuery(DMSqlQuery sqlQuery)
Executes an ANSI compliant SQL SELECT statement in the PA DB.
-