i have to call an interbase database with the jdbc-driver to read
blob-values.
If i were implementing the routine, the driver says
Error: interbase.interclient.DriverNotCapableException: [interclient]
Unsupported feature: Using a JDBC method which is not yet supported.
See API reference for exception
interbase.interclient.DriverNotCapableException
Here my routine
rs.getBlob("CONTENT");
if(!rs.wasNull()){
Blob data = rs.getBlob("CONTENT");
InputStream in = data.getBinaryStream();
elements[i].setContent(in);
}
How are you read any blob-value of the database?
Thanks
Michael
for your list-archive.
You have to call an InputStream-object ONLY with
"rs.getBinaryStream("CONTENT");" NOT like my code above.
That was my problem. 3 Days i was searching with google and other
mailinglists :-(
Michael
On 13 Nov., 10:47, "Michael Post" <michael.p...@purematic.de> wrote:
for your list-archive.