Re: org.postgresql package - Mailing list pgsql-jdbc

From Dave Harkness
Subject Re: org.postgresql package
Date
Msg-id 5.1.0.14.2.20011003123730.00abf1e8@mail.meconomy.com
Whole thread Raw
In response to org.postgresql package  ("Swati" <swatisdesai@rediffmail.com>)
List pgsql-jdbc
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


pgsql-jdbc by date:

Previous
From: Rene Pijlman
Date:
Subject: Re: java.lang.OutOfMemory Exception with a large number of inserts
Next
From: Dave Harkness
Date:
Subject: Re: java.lang.OutOfMemory Exception with a large number