Uses of Class
com.google.api.ads.dfp.lib.utils.QueryBuilder

Packages that use QueryBuilder
com.google.api.ads.dfp.lib.utils   
 

Uses of QueryBuilder in com.google.api.ads.dfp.lib.utils
 

Methods in com.google.api.ads.dfp.lib.utils that return QueryBuilder
 QueryBuilder<V> QueryBuilder.from(String table)
          Sets the statement FROM clause in the form of "table".
 QueryBuilder<V> QueryBuilder.increaseOffsetBy(Integer amount)
          Increases the offset by the amount.
 QueryBuilder<V> QueryBuilder.limit(Integer count)
          Sets the statement LIMIT clause in the form of

"LIMIT <count>"

e.g.
 QueryBuilder<V> QueryBuilder.offset(Integer count)
          Sets the statement OFFSET clause in the form of

"OFFSET <count>"

e.g.
 QueryBuilder<V> QueryBuilder.orderBy(String orderBy)
          Sets the statement ORDER BY clause in the form of

"ORDER BY <property> [ASC | DESC]"

e.g.
 QueryBuilder<V> QueryBuilder.removeLimitAndOffset()
          Removes the limit and offset from the query.
 QueryBuilder<V> QueryBuilder.select(String columns)
          Sets the statement SELECT clause in the form of "a,b" or "*".
 QueryBuilder<V> QueryBuilder.where(String conditions)
          Sets the statement WHERE clause in the form of

"WHERE <condition> {[AND | OR] <condition> ...}"

e.g.
 QueryBuilder<V> QueryBuilder.withBindVariableValue(String key, V value)
          Adds a value to the statement in the form of a Value.
 QueryBuilder<V> QueryBuilder.withBindVariableValues(Map<String,V> values)
          Adds all key value mappings.
 



Copyright © 2012. All Rights Reserved.