int[] tempType = new FieldDescriptorJDONature(fldDesc).getSQLType();
keyGen = keyGenDesc.getKeyGeneratorRegistry().getKeyGenerator(
factory, keyGenDesc, (tempType == null) ? 0 : tempType[0]);
// Does the key generator support the sql type specified in the mapping?
keyGen.supportsSqlType(tempType[0]);
}
}
return keyGen;
}