Package tosa.api

Examples of tosa.api.IDBColumn


        String firstTableName = tableName.substring(nextToLastUnderscore + 1, lastUnderscore);
        String secondTableName = tableName.substring(lastUnderscore + 1);
        DBTableImpl firstTable = tables.get(firstTableName);
        DBTableImpl secondTable = tables.get(secondTableName);

        IDBColumn firstFkColumn;
        IDBColumn secondFkColumn;
        // TODO - AHK - Validate that the columns aren't null
        if (firstTable.equals(secondTable)) {
          firstFkColumn = table.getColumn(firstTableName + "_src_id");
          secondFkColumn = table.getColumn(firstTableName + "_dest_id");
        } else {
View Full Code Here

TOP

Related Classes of tosa.api.IDBColumn

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.