Package ca.carleton.gcrc.dbSec

Examples of ca.carleton.gcrc.dbSec.ColumnData


   
    return(retString);
  }
 
  public String getInsertWildcard(String fieldName) throws Exception {
    ColumnData c = fieldMap.get(fieldName);
    if (null != c) {
      return(c.getInsertWildcard());
    } else {
      throw new Exception("unknown field: "+fieldName);
    }
  }
View Full Code Here


  public String getUpdateWildcard(String fieldName) throws Exception {
    return(getInsertWildcard(fieldName)); // I think they are all the same
  }

  public String getWhereWildcard(String fieldName) throws Exception {
    ColumnData c = fieldMap.get(fieldName);
    if (null != c) {
      return(c.getWhereWildcard());
    } else {
      throw new Exception("unknown field: "+fieldName);
    }
  }
View Full Code Here

TOP

Related Classes of ca.carleton.gcrc.dbSec.ColumnData

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.