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

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

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

Query.init介绍

[英]Initialize the query.
[中]初始化查询。

代码示例

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

  1. private Query parseSelect() {
  2. Query command = null;
  3. int paramIndex = parameters.size();
  4. command = parseSelectUnion();
  5. ArrayList<Parameter> params = New.arrayList();
  6. for (int i = paramIndex, size = parameters.size(); i < size; i++) {
  7. params.add(parameters.get(i));
  8. }
  9. command.setParameterList(params);
  10. command.init();
  11. return command;
  12. }

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

  1. private Prepared parseWithStatementOrQuery() {
  2. int paramIndex = parameters.size();
  3. Prepared command = parseWith();
  4. ArrayList<Parameter> params = New.arrayList();
  5. for (int i = paramIndex, size = parameters.size(); i < size; i++) {
  6. params.add(parameters.get(i));
  7. }
  8. command.setParameterList(params);
  9. if (command instanceof Query) {
  10. Query query = (Query) command;
  11. query.init();
  12. }
  13. return command;
  14. }

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

  1. @Override
  2. public void init() {
  3. if (SysProperties.CHECK && checkInit) {
  4. DbException.throwInternalError();
  5. }
  6. checkInit = true;
  7. left.init();
  8. right.init();
  9. int len = left.getColumnCount();
  10. if (len != right.getColumnCount()) {
  11. throw DbException.get(ErrorCode.COLUMN_COUNT_DOES_NOT_MATCH);
  12. }
  13. ArrayList<Expression> le = left.getExpressions();
  14. // set the expressions to get the right column count and names,
  15. // but can't validate at this time
  16. expressions = New.arrayList();
  17. for (int i = 0; i < len; i++) {
  18. Expression l = le.get(i);
  19. expressions.add(l);
  20. }
  21. }

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

  1. read(")");
  2. query.setParameterList(new ArrayList<>(parameters));
  3. query.init();
  4. Session s;
  5. if (createView != null) {

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

  1. private Query parseSelect() {
  2. int paramIndex = parameters.size();
  3. Query command = parseSelectUnion();
  4. ArrayList<Parameter> params = New.arrayList();
  5. for (int i = paramIndex, size = parameters.size(); i < size; i++) {
  6. params.add(parameters.get(i));
  7. }
  8. command.setParameterList(params);
  9. command.init();
  10. return command;
  11. }

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

  1. private Query parseSelect() {
  2. int paramIndex = parameters.size();
  3. Query command = parseSelectUnion();
  4. ArrayList<Parameter> params = New.arrayList();
  5. for (int i = paramIndex, size = parameters.size(); i < size; i++) {
  6. params.add(parameters.get(i));
  7. }
  8. command.setParameterList(params);
  9. command.init();
  10. return command;
  11. }

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

  1. @Override
  2. public void init() {
  3. if (SysProperties.CHECK && checkInit) {
  4. DbException.throwInternalError();
  5. }
  6. checkInit = true;
  7. left.init();
  8. right.init();
  9. int len = left.getColumnCount();
  10. if (len != right.getColumnCount()) {
  11. throw DbException.get(ErrorCode.COLUMN_COUNT_DOES_NOT_MATCH);
  12. }
  13. ArrayList<Expression> le = left.getExpressions();
  14. // set the expressions to get the right column count and names,
  15. // but can't validate at this time
  16. expressions = New.arrayList();
  17. for (int i = 0; i < len; i++) {
  18. Expression l = le.get(i);
  19. expressions.add(l);
  20. }
  21. }

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

  1. @Override
  2. public void init() {
  3. if (SysProperties.CHECK && checkInit) {
  4. DbException.throwInternalError();
  5. }
  6. checkInit = true;
  7. left.init();
  8. right.init();
  9. int len = left.getColumnCount();
  10. if (len != right.getColumnCount()) {
  11. throw DbException.get(ErrorCode.COLUMN_COUNT_DOES_NOT_MATCH);
  12. }
  13. ArrayList<Expression> le = left.getExpressions();
  14. // set the expressions to get the right column count and names,
  15. // but can't validate at this time
  16. expressions = New.arrayList();
  17. for (int i = 0; i < len; i++) {
  18. Expression l = le.get(i);
  19. expressions.add(l);
  20. }
  21. }

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

  1. public void init() throws SQLException {
  2. if (SysProperties.CHECK && checkInit) {
  3. throw Message.getInternalError();
  4. }
  5. checkInit = true;
  6. left.init();
  7. right.init();
  8. int len = left.getColumnCount();
  9. if (len != right.getColumnCount()) {
  10. throw Message.getSQLException(ErrorCode.COLUMN_COUNT_DOES_NOT_MATCH);
  11. }
  12. ObjectArray le = left.getExpressions();
  13. // set the expressions to get the right column count and names,
  14. // but can't validate at this time
  15. expressions = new ObjectArray();
  16. for (int i = 0; i < len; i++) {
  17. Expression l = (Expression) le.get(i);
  18. expressions.add(l);
  19. }
  20. }

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

  1. private Query parseSelect() throws SQLException {
  2. int paramIndex = parameters.size();
  3. Query command = parseSelectUnion();
  4. ObjectArray params = new ObjectArray();
  5. for (int i = paramIndex; i < parameters.size(); i++) {
  6. params.add(parameters.get(i));
  7. }
  8. command.setParameterList(params);
  9. command.init();
  10. return command;
  11. }

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

  1. query.init();
  2. Session s;
  3. if (prepared != null && prepared instanceof CreateView) {

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

  1. read(")");
  2. query.setParameterList(New.arrayList(parameters));
  3. query.init();
  4. Session s;
  5. if (createView != null) {

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

  1. read(")");
  2. query.setParameterList(New.arrayList(parameters));
  3. query.init();
  4. Session s;
  5. if (createView != null) {

相关文章