412413414415416417418
* @param stream a binary stream * @return the Blob * @throws IOException */ public static Blob createBlob(InputStream stream) throws IOException { return new SerializableBlob( new BlobImpl( stream, stream.available() ) ); }