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

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

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

Query.invalidateCompileCache介绍

暂无

代码示例

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

  1. private void addCompoundSelect(CompoundSelect compoundSelect) {
  2. if (this.compoundSelects == null) {
  3. this.compoundSelects = new ArrayList<>();
  4. }
  5. this.compoundSelects.add(compoundSelect);
  6. invalidateCompileCache();
  7. }

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

  1. /**
  2. * Set the {@link SqlTable table} this query selects from
  3. *
  4. * @param table the table to select from
  5. * @return this Query object, to allow chaining method calls
  6. */
  7. public Query from(SqlTable<?> table) {
  8. if (immutable) {
  9. return fork().from(table);
  10. }
  11. if (this.table != table) {
  12. this.table = table;
  13. if (selectAllCache != null) {
  14. selectAllCache.clear();
  15. }
  16. invalidateCompileCache();
  17. }
  18. return this;
  19. }

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

  1. /**
  2. * Add a {@link Criterion} to the HAVING clause of this query. Multiple calls will combine all the criterions with
  3. * AND.
  4. *
  5. * @param criterion the Criterion to add to the HAVING clause
  6. * @return this Query object, to allow chaining method calls
  7. */
  8. public Query having(Criterion criterion) {
  9. if (criterion == null) {
  10. return this;
  11. }
  12. if (immutable) {
  13. return fork().having(criterion);
  14. }
  15. if (this.havings == null) {
  16. this.havings = new ArrayList<>();
  17. }
  18. this.havings.add(criterion);
  19. invalidateCompileCache();
  20. return this;
  21. }

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

  1. /**
  2. * Add a {@link Criterion} to the WHERE clause of this query. Multiple calls will combine all the criterions with
  3. * AND.
  4. *
  5. * @param criterion the Criterion to add to the WHERE clause
  6. * @return this Query object, to allow chaining method calls
  7. */
  8. public Query where(Criterion criterion) {
  9. if (criterion == null) {
  10. return this;
  11. }
  12. if (immutable) {
  13. return fork().where(criterion);
  14. }
  15. if (criterions == null) {
  16. criterions = new ArrayList<>();
  17. }
  18. criterions.add(criterion);
  19. invalidateCompileCache();
  20. return this;
  21. }

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

  1. /**
  2. * Add more {@link Field Fields} to be selected
  3. *
  4. * @param fields the additional Fields to be selected
  5. * @return this Query object, to allow chaining method calls
  6. */
  7. public Query selectMore(List<Field<?>> fields) {
  8. if (immutable) {
  9. return fork().selectMore(fields);
  10. }
  11. if (!isEmpty(fields)) {
  12. if (this.fields == null) {
  13. this.fields = new ArrayList<>(fields);
  14. } else {
  15. this.fields.addAll(fields);
  16. }
  17. if (selectAllCache != null) {
  18. selectAllCache.clear();
  19. }
  20. invalidateCompileCache();
  21. }
  22. return this;
  23. }

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

  1. /**
  2. * Add a {@link Join} to this query
  3. *
  4. * @param joins one or more joins to apply to this query
  5. * @return this Query object, to allow chaining method calls
  6. */
  7. public Query join(Join... joins) {
  8. if (immutable) {
  9. return fork().join(joins);
  10. }
  11. if (this.joins == null) {
  12. this.joins = new ArrayList<>();
  13. }
  14. SquidUtilities.addAll(this.joins, joins);
  15. if (selectAllCache != null) {
  16. selectAllCache.clear();
  17. }
  18. invalidateCompileCache();
  19. return this;
  20. }

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

  1. /**
  2. * Add a GROUP BY clause (or an additional grouping term) to this query
  3. *
  4. * @param fields one or more Fields to group on
  5. * @return this Query object, to allow chaining method calls
  6. */
  7. public Query groupBy(Field<?>... fields) {
  8. if (immutable) {
  9. return fork().groupBy(fields);
  10. }
  11. if (this.groupByFields == null) {
  12. this.groupByFields = new ArrayList<>();
  13. }
  14. SquidUtilities.addAll(this.groupByFields, fields);
  15. invalidateCompileCache();
  16. return this;
  17. }

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

  1. /**
  2. * Add an ORDER BY clause (or an additional ordering term) to this query
  3. *
  4. * @param orders one or more ordering terms
  5. * @return this Query object, to allow chaining method calls
  6. */
  7. public Query orderBy(Order... orders) {
  8. if (immutable) {
  9. return fork().orderBy(orders);
  10. }
  11. if (this.orders == null) {
  12. this.orders = new ArrayList<>();
  13. }
  14. SquidUtilities.addAll(this.orders, orders);
  15. invalidateCompileCache();
  16. return this;
  17. }

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

  1. /**
  2. * Add more {@link Field Fields} to be selected
  3. *
  4. * @param fields the additional Fields to be selected
  5. * @return this Query object, to allow chaining method calls
  6. */
  7. public Query selectMore(Field<?>... fields) {
  8. if (immutable) {
  9. return fork().selectMore(fields);
  10. }
  11. if (!isEmpty(fields)) {
  12. if (this.fields == null) {
  13. this.fields = new ArrayList<>();
  14. }
  15. SquidUtilities.addAll(this.fields, fields);
  16. if (selectAllCache != null) {
  17. selectAllCache.clear();
  18. }
  19. invalidateCompileCache();
  20. }
  21. return this;
  22. }

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

  1. /**
  2. * Set the limit of this statement as a SQL expression; e.g. a {@link Function} or the result of
  3. * {@link #asFunction()} to use a subquery. Use {@link #NO_LIMIT} to remove the limit.
  4. *
  5. * @param limit the maximum number of rows this query should return
  6. * @return this Query object, to allow chaining method calls
  7. */
  8. public Query limit(Field<Integer> limit) {
  9. if (limit == null) {
  10. limit = NO_LIMIT;
  11. }
  12. if (immutable) {
  13. return fork().limit(limit);
  14. }
  15. if (!this.limit.equals(limit)) {
  16. this.limit = limit;
  17. invalidateCompileCache();
  18. }
  19. return this;
  20. }

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

  1. /**
  2. * Set the limit of this statement as a SQL expression; e.g. a {@link Function} or the result of
  3. * {@link #asFunction()} to use a subquery. Use {@link #NO_LIMIT} for limit to remove the limit. Use
  4. * {@link #NO_OFFSET} for offset to remove the offset.
  5. *
  6. * @param limit the maximum number of rows this query should return
  7. * @param offset the number of rows this query should skip
  8. * @return this Query object, to allow chaining method calls
  9. */
  10. public Query limit(Field<Integer> limit, Field<Integer> offset) {
  11. if (limit == null) {
  12. limit = NO_LIMIT;
  13. }
  14. if (offset == null) {
  15. offset = NO_OFFSET;
  16. }
  17. if (immutable) {
  18. return fork().limit(limit, offset);
  19. }
  20. if (!this.limit.equals(limit) || !this.offset.equals(offset)) {
  21. this.limit = limit;
  22. this.offset = offset;
  23. invalidateCompileCache();
  24. }
  25. return this;
  26. }

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

  1. private void addCompoundSelect(CompoundSelect compoundSelect) {
  2. if (this.compoundSelects == null) {
  3. this.compoundSelects = new ArrayList<>();
  4. }
  5. this.compoundSelects.add(compoundSelect);
  6. invalidateCompileCache();
  7. }

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

  1. /**
  2. * Add a {@link Criterion} to the HAVING clause of this query. Multiple calls will combine all the criterions with
  3. * AND.
  4. *
  5. * @param criterion the Criterion to add to the HAVING clause
  6. * @return this Query object, to allow chaining method calls
  7. */
  8. public Query having(Criterion criterion) {
  9. if (criterion == null) {
  10. return this;
  11. }
  12. if (immutable) {
  13. return fork().having(criterion);
  14. }
  15. if (this.havings == null) {
  16. this.havings = new ArrayList<>();
  17. }
  18. this.havings.add(criterion);
  19. invalidateCompileCache();
  20. return this;
  21. }

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

  1. /**
  2. * Add a {@link Criterion} to the WHERE clause of this query. Multiple calls will combine all the criterions with
  3. * AND.
  4. *
  5. * @param criterion the Criterion to add to the WHERE clause
  6. * @return this Query object, to allow chaining method calls
  7. */
  8. public Query where(Criterion criterion) {
  9. if (criterion == null) {
  10. return this;
  11. }
  12. if (immutable) {
  13. return fork().where(criterion);
  14. }
  15. if (criterions == null) {
  16. criterions = new ArrayList<>();
  17. }
  18. criterions.add(criterion);
  19. invalidateCompileCache();
  20. return this;
  21. }

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

  1. /**
  2. * Set the {@link SqlTable table} this query selects from
  3. *
  4. * @param table the table to select from
  5. * @return this Query object, to allow chaining method calls
  6. */
  7. public Query from(SqlTable<?> table) {
  8. if (immutable) {
  9. return fork().from(table);
  10. }
  11. if (this.table != table) {
  12. this.table = table;
  13. if (selectAllCache != null) {
  14. selectAllCache.clear();
  15. }
  16. invalidateCompileCache();
  17. }
  18. return this;
  19. }

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

  1. /**
  2. * Add more {@link Field Fields} to be selected
  3. *
  4. * @param fields the additional Fields to be selected
  5. * @return this Query object, to allow chaining method calls
  6. */
  7. public Query selectMore(List<Field<?>> fields) {
  8. if (immutable) {
  9. return fork().selectMore(fields);
  10. }
  11. if (!isEmpty(fields)) {
  12. if (this.fields == null) {
  13. this.fields = new ArrayList<>(fields);
  14. } else {
  15. this.fields.addAll(fields);
  16. }
  17. if (selectAllCache != null) {
  18. selectAllCache.clear();
  19. }
  20. invalidateCompileCache();
  21. }
  22. return this;
  23. }

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

  1. /**
  2. * Add a {@link Join} to this query
  3. *
  4. * @param joins one or more joins to apply to this query
  5. * @return this Query object, to allow chaining method calls
  6. */
  7. public Query join(Join... joins) {
  8. if (immutable) {
  9. return fork().join(joins);
  10. }
  11. if (this.joins == null) {
  12. this.joins = new ArrayList<>();
  13. }
  14. SquidUtilities.addAll(this.joins, joins);
  15. if (selectAllCache != null) {
  16. selectAllCache.clear();
  17. }
  18. invalidateCompileCache();
  19. return this;
  20. }

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

  1. /**
  2. * Add a GROUP BY clause (or an additional grouping term) to this query
  3. *
  4. * @param fields one or more Fields to group on
  5. * @return this Query object, to allow chaining method calls
  6. */
  7. public Query groupBy(Field<?>... fields) {
  8. if (immutable) {
  9. return fork().groupBy(fields);
  10. }
  11. if (this.groupByFields == null) {
  12. this.groupByFields = new ArrayList<>();
  13. }
  14. SquidUtilities.addAll(this.groupByFields, fields);
  15. invalidateCompileCache();
  16. return this;
  17. }

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

  1. /**
  2. * Add an ORDER BY clause (or an additional ordering term) to this query
  3. *
  4. * @param orders one or more ordering terms
  5. * @return this Query object, to allow chaining method calls
  6. */
  7. public Query orderBy(Order... orders) {
  8. if (immutable) {
  9. return fork().orderBy(orders);
  10. }
  11. if (this.orders == null) {
  12. this.orders = new ArrayList<>();
  13. }
  14. SquidUtilities.addAll(this.orders, orders);
  15. invalidateCompileCache();
  16. return this;
  17. }

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

  1. /**
  2. * Set the limit of this statement as a SQL expression; e.g. a {@link Function} or the result of
  3. * {@link #asFunction()} to use a subquery. Use {@link #NO_LIMIT} to remove the limit.
  4. *
  5. * @param limit the maximum number of rows this query should return
  6. * @return this Query object, to allow chaining method calls
  7. */
  8. public Query limit(Field<Integer> limit) {
  9. if (limit == null) {
  10. limit = NO_LIMIT;
  11. }
  12. if (immutable) {
  13. return fork().limit(limit);
  14. }
  15. if (!this.limit.equals(limit)) {
  16. this.limit = limit;
  17. invalidateCompileCache();
  18. }
  19. return this;
  20. }

相关文章