blob setBinaryStream
| От | Matt Fair |
|---|---|
| Тема | blob setBinaryStream |
| Дата | |
| Msg-id | 3BAF4759.5030402@netasol.com обсуждение исходный текст |
| Ответы |
Re: blob setBinaryStream
|
| Список | 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 по дате отправления: