*
* @see org.apache.ojb.broker.metadata.FieldDescriptor#getJdbcType
*/
public static JdbcType getJdbcTypeByReflection(String fieldType)
{
JdbcType result;
if (fieldType.equalsIgnoreCase(Character.class.getName()) || fieldType.equalsIgnoreCase("char"))
result = getJdbcTypeByName("char");
else if (fieldType.equalsIgnoreCase(Short.class.getName()) || fieldType.equalsIgnoreCase("short"))
result = getJdbcTypeByName("smallint");
else if (fieldType.equalsIgnoreCase(Integer.class.getName()) || fieldType.equalsIgnoreCase("int"))