From: | Gabriel Lopez <gabilm(at)dif(dot)um(dot)es> |
---|---|
To: | psql <pgsql-interfaces(at)postgresql(dot)org> |
Subject: | wrong documentation and others ..... |
Date: | 2000-10-05 10:59:53 |
Message-ID: | 39DC5F29.E9F4023@dif.um.es |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-interfaces |
Hi all.
I have several days working with LargeObject and postgres 7.0.2 and
I have found many problems. In the first time the postgresql doc is
wrong, in chapter 58 of PosgreSQL tutorial (JDBC Interfaces) it repot
who to work with Large Object and give code that is wrong:
File file = new File("myimage.gif");
FileInputStream fis = new FileInputStream(file);
PreparedStatement ps = conn.prepareStatement("insert into images
values (?,?)");
ps.setString(1,file.getName());
ps.setBinaryStream(2,fis,file.length());
ps.executeUpdate();
ps.close();
fis.close();
PreparedStatement ps = con.prepareStatement("select oid from
images where name=?");
ps.setString(1,"myimage.gif");
ResultSet rs = ps.executeQuery();
if(rs!=null) {
while(rs.next()) {
InputStream is = rs.getBinaryInputStream(1);
// use the stream in some way here
is.close();
}
rs.close();
}
ps.close();
InputStream ARE NOT SUPPORTED in JDBC implementation ¡¿?¡ and
"getBinaryInputStream()" really is "getBinaryStream()". I think that it
is very serious. The other method (that I know) is using LargeObjectAPI,
but this fail every 9 times of PreparedStatement of setObject() sentence
¡¡¡ and when use LargeObjectManager as in source examples. (I send other
messages to list)
Has PostgreSQL any way to work WELL with LargeObject.?
Please reply me.
Cheers, Gabi.
--
Gabriel López Millán
Facultad de Informática -Universidad de Murcia
30001 Murcia - España (Spain)
Telf: +34-968-364644 E-mail: gabilm(at)dif(dot)um(dot)es
From | Date | Subject | |
---|---|---|---|
Next Message | Troels Jegbjaerg Moerch | 2000-10-05 11:15:24 | Re: wrong documentation and others ..... |
Previous Message | Billy G. Allie | 2000-10-05 03:47:42 | Announcing PgSQL - a Python DB-API 2.0 compliant interface to PostgreSQL |