sqlToPrimitiveMatrix[getSQLTypeIndex(Types.OTHER)] = new PrimitiveType[] {};
}
public static int getSQLType(Type type) {
PrimitiveType ptype = type.getPrimitiveType();
if (ptype == null) {
return Types.OTHER;
}
return primitiveToSQLTypeMatrix[ptype.ordinal()];
}