Uses of Class
com.ibm.fhir.database.utils.query.FromAdapter
-
Packages that use FromAdapter Package Description com.ibm.fhir.database.utils.query -
-
Uses of FromAdapter in com.ibm.fhir.database.utils.query
Methods in com.ibm.fhir.database.utils.query that return FromAdapter Modifier and Type Method Description FromAdapter
FromAdapter. from(String tableName)
Add a table to the from clause returning thisFromAdapter
ready for the next itemFromAdapter
FromAdapter. from(String tableName, Alias alias)
Add a table with an alias (tab AS foo) to the from clause returning thisFromAdapter
ready for the next itemFromAdapter
SelectAdapter. from()
Create aFromAdapter
associated with the current select statement.FromAdapter
SelectAdapter. from(Select sub, Alias alias)
Add the sub-query select to the FROM clauseFromAdapter
SelectAdapter. from(String table)
Create a from clause for this select statementFromAdapter
SelectAdapter. from(String tableName, Alias alias)
Create a from clause for this select statementFromAdapter
FromAdapter. innerJoin(String tableName, Alias alias, WhereFragment joinOnPredicate)
Add an INNER JOIN for the given tableFromAdapter
FromAdapter. leftOuterJoin(String tableName, Alias alias, WhereFragment joinOnPredicate)
Add a LEFT OUTER JOIN for the given tableFromAdapter
FromSubQueryAdapter. subEnd(String alias)
End construction of this sub-query by returning out parentFromAdapter
thus allowing a caller to continue with their fluent building of the select statementConstructors in com.ibm.fhir.database.utils.query with parameters of type FromAdapter Constructor Description FromSubQueryAdapter(Select parentSelect, FromAdapter from)
constructor
-