Package com.alvazan.orm.api.z8spi.meta

Examples of com.alvazan.orm.api.z8spi.meta.DboColumnIdMeta


          //TODO: PUT this in virtual partition????
          cf.setup(null, type.getIndexTableName(), false);
          cf.setColNamePrefixType(type);
         
          DboColumnIdMeta idMeta = new DboColumnIdMeta();
          idMeta.setup(cf, "id", String.class, false);
         
          tempMgr.put(idMeta);
          tempMgr.put(cf);
         
          databaseInfo.addMetaClassDbo(cf);
View Full Code Here


      existing = new ViewInfoImpl(newAlias, fkTableMeta);
      wiring.putAliasTable(newAlias, existing);
    }
   
    //since this is an inner join on primary key, use id column
    DboColumnIdMeta colMeta2 = existing.getTableMeta().getIdColumnMeta();
    JoinInfo join = new JoinInfo(tableInfo, columnMeta, existing, colMeta2, type);
   
    tableInfo.addJoin(join);
    existing.addJoin(join);
  }
View Full Code Here

TOP

Related Classes of com.alvazan.orm.api.z8spi.meta.DboColumnIdMeta

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.