On Tue, 18 Dec 2007, tyju tiui wrote:
> I'm trying to use the 'setObject' method of a preparedStatement to store
> a POJO and I'm getting an error:
> org.postgresql.util.PSQLException: Unsupported Types value: 2,000
>
The postgresql JDBC driver currently does not support storing Java objects
directly like this. Perhaps you could serialize them yourself and store
them in a bytea field?
Kris Jurka