Package org.gdbms.engine.strategies

Examples of org.gdbms.engine.strategies.Strategy


   * @return DataSource que accede a los datos resultado de ejecutar la select
   * @throws ExecutionException
   */
  public DataSource getDataSource(SelectAdapter instr)
      throws ExecutionException {
    Strategy strategy = sm.getStrategy(instr);

    DataSource ret;

    ret = strategy.select(instr);

    return ret;
  }
View Full Code Here


   *
   * @throws ExecutionException
   */
  private DataSource getDataSource(UnionAdapter instr)
      throws ExecutionException {
    Strategy strategy = sm.getStrategy(instr);

    DataSource ret;

    ret = strategy.union(instr);

    return getModedDataSource(ret, NORMAL);
  }
View Full Code Here

   *
   * @throws ExecutionException
   */
  public DataSource getDataSource(CustomAdapter instr)
      throws ExecutionException {
    Strategy strategy = sm.getStrategy(instr);

    DataSource ret;

    ret = strategy.custom(instr);

    return getModedDataSource(ret, NORMAL);
  }
View Full Code Here

TOP

Related Classes of org.gdbms.engine.strategies.Strategy

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.