org.h2.command.dml.Query.getParameterValues()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(317)

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

Query.getParameterValues介绍

暂无

代码示例

代码示例来源:origin: com.h2database/h2

  1. return queryWithoutCacheLazyCheck(limit, target);
  2. Value[] params = getParameterValues();
  3. long now = session.getDatabase().getModificationDataId();
  4. if (isEverything(ExpressionVisitor.DETERMINISTIC_VISITOR)) {

代码示例来源:origin: com.h2database/com.springsource.org.h2

  1. public LocalResult query(int limit) throws SQLException {
  2. if (!session.getDatabase().getOptimizeReuseResults()) {
  3. return queryWithoutCache(limit);
  4. }
  5. Value[] params = getParameterValues();
  6. long now = session.getDatabase().getModificationDataId();
  7. if (lastResult != null && !lastResult.isClosed() && limit == lastLimit) {
  8. if (sameResultAsLast(session, params, lastParameters, lastEvaluated)) {
  9. lastResult = lastResult.createShallowCopy(session);
  10. if (lastResult != null) {
  11. lastResult.reset();
  12. return lastResult;
  13. }
  14. }
  15. }
  16. lastParameters = params;
  17. closeLastResult();
  18. lastResult = queryWithoutCache(limit);
  19. this.lastEvaluated = now;
  20. lastLimit = limit;
  21. return lastResult;
  22. }

代码示例来源:origin: com.eventsourcing/h2

  1. return queryWithoutCache(limit, target);
  2. Value[] params = getParameterValues();
  3. long now = session.getDatabase().getModificationDataId();
  4. if (isEverything(ExpressionVisitor.DETERMINISTIC_VISITOR)) {

代码示例来源:origin: org.wowtools/h2

  1. return queryWithoutCache(limit, target);
  2. Value[] params = getParameterValues();
  3. long now = session.getDatabase().getModificationDataId();
  4. if (isEverything(ExpressionVisitor.DETERMINISTIC_VISITOR)) {

相关文章