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);
}
}