users-lounge/docs/7.1/programmer/jdbc-lo.html - ERROR?

From: Hans-Jürgen Schönig <hs(at)cybertec(dot)at>
To: pgsql-docs(at)postgresql(dot)org
Subject: users-lounge/docs/7.1/programmer/jdbc-lo.html - ERROR?
Date: 2001-06-05 13:09:23
Message-ID: 3B1CDA02.9CD1E403@cybertec.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

I have copied the code out of the source code but somehow the compiler
fails. There seems to be something wrong with the docs.
I am using PostgreSQL 7.1.2 on RedHat 7.1.

conn.setAutoCommit(false);
File file = new File("snapshot.bmp");
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();

oconnect.java:20: setBinaryStream(int,java.io.InputStream,int) in
java.sql.PreparedStatement cannot be applied to
(int,java.io.FileInputStream,long)
ps.setBinaryStream(2, fis, file.length());
^
1 error

Hans

Browse pgsql-docs by date

  From Date Subject
Next Message Jean-Francois Leveque 2001-06-06 12:15:15 [DOC] Looking for foreign key and triggers doc
Previous Message Bruce Momjian 2001-06-04 20:35:08 Re: [INTERFACES] libpq sockets on win32