Package org.gdbms.engine.instruction

Examples of org.gdbms.engine.instruction.TableRefAdapter


   * @param instrNameDBName hasmap with the gdbms names a s the keys and the
   *        database name as the values.
   */
  private void translateFromTables(Adapter adapter, HashMap<String, String> instrNameDBName) {
      if (adapter instanceof TableRefAdapter) {
          TableRefAdapter tra = (TableRefAdapter) adapter;
          SimpleNode s = tra.getEntity();
 
          if (s.first_token == s.last_token) {
              String alias = "gdbms" + System.currentTimeMillis();
              String name = s.first_token.image;
              s.first_token.image = gdbmsNameViewName.get(name) + " " + alias;
View Full Code Here

TOP

Related Classes of org.gdbms.engine.instruction.TableRefAdapter

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.