PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come mappare l'enumerazione PostgreSQL con JPA e Hibernate

L'avevo capito. Avevo bisogno di usare setObject invece di setString nella funzione nullSafeSet e passare Types.OTHER come java.sql.type per far sapere a jdbc che era un tipo postgres.

public void nullSafeSet(PreparedStatement st, Object value, int index) throws HibernateException, SQLException {
    if (value == null) {
        st.setNull(index, Types.VARCHAR);
    }
    else {
//            previously used setString, but this causes postgresql to bark about incompatible types.
//           now using setObject passing in the java type for the postgres enum object
//            st.setString(index,((Enum) value).name());
        st.setObject(index,((Enum) value), Types.OTHER);
    }
}