BasicBinder<X>(javaTypeDescriptor, this) {
protected void doBind(PreparedStatement st, X value, int index, WrapperOptions options) throws SQLException {
st.setBytes(index, (byte[])javaTypeDescriptor.unwrap(value, byte[].class, options));
}
protected void doBind(CallableStatement st, X value, String name, WrapperOptions options) throws SQLException {
st.setBytes(name, (byte[])javaTypeDescriptor.unwrap(value, byte[].class, options));
}
};