At 11:26 PM 10/2/2001, Swati wrote:
>InputStream is = rs.getBinaryStream();
>
>but it gives me compilation error:
>
>cannot resolve symbol
>symbol : method getBinaryInputStream ()
You need to specify the column index or name to access as a BinaryStream:
InputStream is = rs.getBinaryStream(1);
or
InputStream is = rs.getBinaryStream("data");
The methods are declared in java.sql.ResultSet and are not specific to
Postgres.
Peace,
Dave