I am creating a hibernate usertype to persist a long datatype as a byte array with additional data in the database(hsqldb). When I set the byte array in the prepared statement(.setBytes()) after encrypting the long value( in nullSafeSet of usertype), I get the following error

java.sql.SQLException: Wrong data type: java.lang.NumberFormatException: For input string: "[B@2227b52"
at org.hsqldb.jdbc.Util.throwError(Unknown Source)
at org.hsqldb.jdbc.jdbcPreparedStatement.setParameter(Unknown Source)
at org.hsqldb.jdbc.jdbcPreparedStatement.setBytes(Unknown Source)
...

My usertype's returnedClass() is Long and sqlTypes() is Types.VARBINARY I have annotated a Long field to use this custom usertype I created I can also see that the database ddl for that field is created as a VARBINARY, but for some reason the prepared statement for that parameter expects a Long datatype.

Can someone suggest if I am doing something wrong here?

This is part of my hibernate usertype The convertToByteArray method adds additional information to the long data and returns a byte[].

public class LongToByteArrayUserType extends UserType {

@Override
public int[] sqlTypes() {
    return new int[] { Types.VARBINARY };
}

@Override
public Class returnedClass() {
    return Long.class;
}

@Override
public void nullSafeSet(PreparedStatement st, Object value, int index) 
        throws SQLException, HibernateException {


    if(value == null) {
        st.setNull(index, sqlTypes()[0]);
    }
    else if(value instanceof Long) {


    byte[] val = convertToByteArray((Long)value);

            try {
                st.setBytes(index, val);
            }catch(Exception e) {
                e.printStackTrace();
            }

    }
    else {
        throw new HibernateException(
                "Error: Invalid datatype);

    }
}

}

Thanks

link|improve this question
post some code, please. Where do you deal with your byte array, etc. It seems that your passing the reference to the array and not its contents, since you get a [B@2222... kind of error. – woliveirajr Sep 29 '11 at 19:26
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.