catch (SQLFeatureNotSupportedException e) {
System.out.println("Skipping " + typeName + " - " + e.getMessage() + " (binlen)");
return;
}
Type type = conn.getRegistry().loadType(typeName);
if (type == null) {
System.out.println("Skipping " + typeName + " unknown (binlen)");
return;
}
if (!type.isParameterFormatSupported(Format.Binary) || !type.isResultFormatSupported(Format.Binary)) {
return;
}
compareLengths(coerceValue(type, Format.Binary, value), type, type.getBinaryCodec());
}