Package org.gdbms.engine.strategies

Examples of org.gdbms.engine.strategies.OperationDataSource


      DataSourceCreationException {
    Object o = tableSource.get(tableName);

    if (o == null) {
      // may be a operation layer DataSource
      OperationDataSource ret = (OperationDataSource) nameResultDataSource
          .get(tableName);

      if (ret != null) {
        ret.setName(tableAlias);

        return getModedDataSource(ret, mode);
      }

      // table not found
View Full Code Here

TOP

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

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.