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

Поиск
Список
Период
Сортировка
От Hans-Jürgen Schönig
Тема users-lounge/docs/7.1/programmer/jdbc-lo.html - ERROR?
Дата
Msg-id 3B1CDA02.9CD1E403@cybertec.at
обсуждение исходный текст
Список 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


В списке pgsql-docs по дате отправления:

Предыдущее
От: "Jeff Johnson"
Дата:
Сообщение: RE: [INTERFACES] libpq sockets on win32
Следующее
От: Anthony Dye
Дата:
Сообщение: 404