Package de.fuberlin.wiwiss.d2rq.sql

Examples of de.fuberlin.wiwiss.d2rq.sql.SQLIterator


  private QueryIterTableSQL(Relation relation,
      Collection<BindingMaker> bindingMakers, ExecutionContext execCxt) {
    super(execCxt);
    this.bindingMakers = bindingMakers;
    SelectStatementBuilder builder = new SelectStatementBuilder(relation);
    wrapped = new SQLIterator(
        builder.getSQLStatement(), builder.getColumnSpecs(), relation.database());
  }
View Full Code Here

TOP

Related Classes of de.fuberlin.wiwiss.d2rq.sql.SQLIterator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.