On Tue, 24 Aug 2004, Jaap Bril wrote:
> the exception is
> SQLEXCEPTION:Storing thumbnail failed:
> java.sql.SQLException: ERROR: Bad int8 external representation
> "\377\330\377\340\ [.........]
>
> String thumbnail_insert = "INSERT INTO thumbnails VALUES (?)";
You are trying to put the byte array into your serial column. You need to
explicitly name the column you want in your insert statement.
Kris Jurka