public interface FirebirdBlob
extends java.sql.Blob
Modifier and Type | Interface and Description |
---|---|
static interface |
FirebirdBlob.BlobInputStream
Blob input stream.
|
static interface |
FirebirdBlob.BlobOutputStream
Blob output stream.
|
Modifier and Type | Method and Description |
---|---|
FirebirdBlob |
detach()
Detach this blob.
|
boolean |
isSegmented()
Check if blob is segmented.
|
FirebirdBlob detach() throws java.sql.SQLException
Note, detached blob will not remember the stream position of this object. This means that you cannot start reading data from the blob, then detach it, and then continue reading. Reading from detached blob will begin at the blob start.
FirebirdBlob
that is not under result set
control.java.sql.SQLException
- if Blob cannot be detached.boolean isSegmented() throws java.sql.SQLException
FirebirdBlob.BlobInputStream.seek(int)
method.true
if this blob is segmented,
otherwise false
java.sql.SQLException
Copyright © 2001-2021 Jaybird (Firebird JDBC/JCA) team. All rights reserved.