blob setBinaryStream - Mailing list pgsql-jdbc

From Matt Fair
Subject blob setBinaryStream
Date
Msg-id 3BAF4759.5030402@netasol.com
Whole thread Raw
Responses Re: blob setBinaryStream
List pgsql-jdbc
Do you need to create a transaction to set blobs?
        con.setAutoCommit(false);
        FileInputStream fis = new FileInputStream(file);
        PreparedStatement ps = con.prepareStatement("update=
userpreferences set image='?' and time=? where user='?'");
        Logger.log("Setting Binary Stream");
        ps.setBinaryStream(1, fis, length);
        ps.setInt(2, (int)new java.util.Date().getTime());
        ps.setString(3, user);
        ps.executeUpdate();
        ps.close();
        fis.close();
        con.commit();
        con.setAutoCommit(true) ;

When Set Binarystream calls the setInt method, it throws a
 SQLExceptionParameter index out of range.
Does anyone know what this could be?



pgsql-jdbc by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: JDBC test suite patch
Next
From: Matt Fair
Date:
Subject: Re: blob setBinaryStream