public class FBBlobOutputStream extends java.io.OutputStream implements FirebirdBlob.BlobOutputStream
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Close this stream.
|
long |
length()
Get Blob length.
|
void |
seek(int position,
int seekMode) |
void |
write(byte[] b,
int off,
int len)
Write data from the buffer into this stream.
|
void |
write(int b)
Write single byte into the stream.
|
void |
writeSegment(byte[] buf) |
public void seek(int position,
int seekMode)
throws java.sql.SQLException
java.sql.SQLExceptionpublic long length()
throws java.io.IOException
FirebirdBlob.BlobOutputStreamlength in interface FirebirdBlob.BlobOutputStreamjava.io.IOException - if I/O error occurs.public void write(int b)
throws java.io.IOException
FirebirdBlob.BlobOutputStreamwrite in interface FirebirdBlob.BlobOutputStreamwrite in class java.io.OutputStreamb - data to write, only lowest 8 bits are written.java.io.IOException - if I/O error occurs.public void writeSegment(byte[] buf)
throws GDSException
GDSExceptionpublic void write(byte[] b,
int off,
int len)
throws java.io.IOException
FirebirdBlob.BlobOutputStreamwrite in interface FirebirdBlob.BlobOutputStreamwrite in class java.io.OutputStreamb - buffer from which data should be written.off - offset in the buffer.len - number of bytes to write.java.io.IOException - if I/O error occurs.public void close()
throws java.io.IOException
FirebirdBlob.BlobOutputStreamclose in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in interface FirebirdBlob.BlobOutputStreamclose in class java.io.OutputStreamjava.io.IOException - if I/O error occurs.Copyright © 2001-2019 Jaybird (Firebird JDBC/JCA) team. All rights reserved.