Re: Will Connection.createBlob be implemented any time soon? - Mailing list pgsql-jdbc

From Thomas Kellerer
Subject Re: Will Connection.createBlob be implemented any time soon?
Date
Msg-id lbgk12$252$1@ger.gmane.org
Whole thread Raw
In response to Will Connection.createBlob be implemented any time soon?  (Andreas Joseph Krogh <andreak@officenet.no>)
Responses Re: Will Connection.createBlob be implemented any time soon?  (Andreas Joseph Krogh <andreak@officenet.no>)
List pgsql-jdbc
Andreas Joseph Krogh wrote on 19.01.2014 14:14:
> $subject
> It'd be nice to be able to do:
>                  val b = con.createBlob()
>                  val os = b.setBinaryStream(1)
>                  IOUtils.copyLarge(is, os, new Array[Byte](1024 * 1024))
> Is there a work-around for it?

Using PreparedStatement.setBinaryStream() works without problems.
You don't even need the intermediate Blob instance:

PreparedStatement pstmt = con.createStatement("....");

pstmt.setBinaryStream(1, is);
   or
pstmt.setBinaryStream(1, is, length);  // if the length is known




pgsql-jdbc by date:

Previous
From: Andreas Joseph Krogh
Date:
Subject: Will Connection.createBlob be implemented any time soon?
Next
From: Andreas Joseph Krogh
Date:
Subject: Re: Will Connection.createBlob be implemented any time soon?