public static interface FirebirdBlob.BlobOutputStream
OutputStream only because it is abstract class and not interface
that we can extend.void close()
throws java.io.IOException
java.io.IOException - if I/O error occurs.long length()
throws java.io.IOException
java.io.IOException - if I/O error occurs.void write(byte[] buffer,
int offset,
int length)
throws java.io.IOException
buffer - buffer from which data should be written.offset - offset in the buffer.length - number of bytes to write.java.io.IOException - if I/O error occurs.void write(int data)
throws java.io.IOException
data - data to write, only lowest 8 bits are written.java.io.IOException - if I/O error occurs.Copyright © 2001-2019 Jaybird (Firebird JDBC/JCA) team. All rights reserved.