com.yahoo.squidb.sql.Query.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.9k)|赞(0)|评价(0)|浏览(279)

本文整理了Java中com.yahoo.squidb.sql.Query.<init>方法的一些代码示例,展示了Query.<init>的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.<init>方法的具体详情如下:
包路径:com.yahoo.squidb.sql.Query
类名称:Query
方法名:<init>

Query.<init>介绍

暂无

代码示例

代码示例来源:origin: yahoo/squidb

  1. /**
  2. * Construct a new Select statement that queries for the specified {@link Field Fields}
  3. *
  4. * @param fields the Fields to select
  5. * @return a new Query object
  6. */
  7. public static Query select(List<Field<?>> fields) {
  8. return new Query(fields);
  9. }

代码示例来源:origin: yahoo/squidb

  1. /**
  2. * Construct a new Select statement that queries for distinct values of the specified {@link Field Fields}
  3. *
  4. * @param fields the Fields to select
  5. * @return a new Query object
  6. */
  7. public static Query selectDistinct(List<Field<?>> fields) {
  8. Query query = new Query(fields);
  9. query.distinct = true;
  10. return query;
  11. }

代码示例来源:origin: yahoo/squidb

  1. /**
  2. * Construct a new Select statement that queries for the specified {@link Field Fields}
  3. *
  4. * @param fields the Fields to select
  5. * @return a new Query object
  6. */
  7. public static Query select(Field<?>... fields) {
  8. return new Query(fields);
  9. }

代码示例来源:origin: yahoo/squidb

  1. /**
  2. * Construct a new Select statement that queries for distinct values of the specified {@link Field Fields}
  3. *
  4. * @param fields the Fields to select
  5. * @return a new Query object
  6. */
  7. public static Query selectDistinct(Field<?>... fields) {
  8. Query query = new Query(fields);
  9. query.distinct = true;
  10. return query;
  11. }

代码示例来源:origin: yahoo/squidb

  1. /**
  2. * @return a new query initialized with the current state of this query. The copy is not entirely shallow--methods
  3. * called on one query will not affect the state of the forked query--but changes to variable arguments in
  4. * {@link Criterion Criterions} they share will affect both copies.
  5. */
  6. public Query fork() {
  7. Query newQuery = new Query(fields);
  8. newQuery.table = table;
  9. newQuery.criterions = forkList(criterions);
  10. newQuery.joins = forkList(joins);
  11. newQuery.groupByFields = forkList(groupByFields);
  12. newQuery.compoundSelects = forkList(compoundSelects);
  13. newQuery.orders = forkList(orders);
  14. newQuery.havings = forkList(havings);
  15. newQuery.limit = limit;
  16. newQuery.offset = offset;
  17. newQuery.distinct = distinct;
  18. newQuery.needsValidation = needsValidation;
  19. return newQuery;
  20. }

代码示例来源:origin: com.yahoo.squidb/squidb

  1. /**
  2. * Construct a new Select statement that queries for distinct values of the specified {@link Field Fields}
  3. *
  4. * @param fields the Fields to select
  5. * @return a new Query object
  6. */
  7. public static Query selectDistinct(Field<?>... fields) {
  8. Query query = new Query(fields);
  9. query.distinct = true;
  10. return query;
  11. }

代码示例来源:origin: com.yahoo.squidb/squidb

  1. /**
  2. * Construct a new Select statement that queries for the specified {@link Field Fields}
  3. *
  4. * @param fields the Fields to select
  5. * @return a new Query object
  6. */
  7. public static Query select(Field<?>... fields) {
  8. return new Query(fields);
  9. }

代码示例来源:origin: com.yahoo.squidb/squidb

  1. /**
  2. * Construct a new Select statement that queries for distinct values of the specified {@link Field Fields}
  3. *
  4. * @param fields the Fields to select
  5. * @return a new Query object
  6. */
  7. public static Query selectDistinct(List<Field<?>> fields) {
  8. Query query = new Query(fields);
  9. query.distinct = true;
  10. return query;
  11. }

代码示例来源:origin: com.yahoo.squidb/squidb

  1. /**
  2. * Construct a new Select statement that queries for the specified {@link Field Fields}
  3. *
  4. * @param fields the Fields to select
  5. * @return a new Query object
  6. */
  7. public static Query select(List<Field<?>> fields) {
  8. return new Query(fields);
  9. }

代码示例来源:origin: com.yahoo.squidb/squidb

  1. /**
  2. * @return a new query initialized with the current state of this query. The copy is not entirely shallow--methods
  3. * called on one query will not affect the state of the forked query--but changes to variable arguments in
  4. * {@link Criterion Criterions} they share will affect both copies.
  5. */
  6. public Query fork() {
  7. Query newQuery = new Query(fields);
  8. newQuery.table = table;
  9. newQuery.criterions = forkList(criterions);
  10. newQuery.joins = forkList(joins);
  11. newQuery.groupByFields = forkList(groupByFields);
  12. newQuery.compoundSelects = forkList(compoundSelects);
  13. newQuery.orders = forkList(orders);
  14. newQuery.havings = forkList(havings);
  15. newQuery.limit = limit;
  16. newQuery.offset = offset;
  17. newQuery.distinct = distinct;
  18. newQuery.needsValidation = needsValidation;
  19. return newQuery;
  20. }

相关文章