Package ca.carleton.gcrc.dbSec.impl

Examples of ca.carleton.gcrc.dbSec.impl.TableSchemaImpl


        String logicalName = rs.getString(2);
        String physicalName = rs.getString(3);
        int groupId = rs.getInt(4);
        String options = rs.getString(5);
       
        TableSchemaImpl tableData = nameToTableMap.get(logicalName);
        if( null == tableData ) {
          tableData = new TableSchemaImpl();
          tableData.setLogicalName(logicalName);
          tableData.setPhysicalName(physicalName);
          tableData.setGroupId(groupId);
          try {
            TableOptionsParser.parseTableOptions(options, tableData);
          } catch (Exception e) {
            try {
              stmt.close();
View Full Code Here

TOP

Related Classes of ca.carleton.gcrc.dbSec.impl.TableSchemaImpl

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.