*/
public String toDDL(final Field field) throws GeneratorException {
Integer length = field.getLength();
if (length == null) { length = _defaultLength; }
if (length == null) {
throw new GeneratorException(
"Reguired length attribute missing for field '" + field.getName()
+ "' of type '" + getJdbcType() + "'");
}
StringBuffer sb = new StringBuffer();