| Oracle® C++ Call Interface Programmer's Guide, 11g Release 2 (11.2) Part Number E10764-02 | 
 | 
| 
 | PDF · Mobi · ePub | 
The Blob class defines the common properties of objects of type BLOB. A BLOB is a large binary object stored as a column value in a row of a database table. A Blob object contains a logical pointer to a BLOB, not the BLOB itself.
Methods of the Blob class enable you to perform specific tasks related to Blob objects.
Methods of the ResultSet and Statement classes, such as getBlob() and setBlob(), enable you to access an SQL BLOB value.
The only methods valid on a NULL Blob object are setName(), isNull(), and operator=().
An uninitialized Blob object can be initialized by:
The setEmpty() method. The BLOB can then be modified by inserting this BLOB into the table and then retrieving it using SELECT...FOR UPDATE. The write() method modifies the BLOB; however, the modified data is flushed to the table only when the transaction is committed. Note that an update is not required.
Assigning an initialized Blob object to it.
See Also:
In-depth discussion of LOBs in Oracle Database SecureFiles and Large Objects Developer's Guide
Table 13-8 Summary of Blob Methods
| Method | Summary | 
|---|---|
| 
 | |
| Appends a specified  | |
| Closes a previously opened  | |
| Closes the  | |
| Copies a specified portion of a  | |
| Returns the smallest data size to perform efficient writes to the  | |
| Returns the content type of the  | |
| Returns the  | |
| Returns data from the  | |
| Tests whether the  | |
| Tests whether the  | |
| Tests whether the  | |
| Returns the number of bytes in the  | |
| Opens the  | |
| Assigns a  | |
| Tests whether two  | |
| Tests whether two  | |
| Reads a portion of the  | |
| Sets the content type of the  | |
| Sets the  | |
| Sets the  | |
| Specifies a  | |
| Truncates the  | |
| Writes a buffer into an unopened  | |
| Writes a buffer into an open  | 
Blob class constructor.
| Syntax | Description | 
|---|---|
| Blob(); | Creates a NULLBlobobject. | 
| Blob( const Connection *connectionp); | Creates an uninitialized Blobobject. | 
| Blob( const Blob &srcBlob); | Creates a copy of a Blobobject. | 
| Parameter | Description | 
|---|---|
| connectionp | The connection pointer | 
| srcBlob | The source Blobobject. | 
Appends a BLOB to the end of the current BLOB.
void append( const Blob &srcBlob);
| Parameter | Description | 
|---|---|
| srcBlob | The BLOBobject to be appended to the currentBLOBobject. | 
Closes a BLOB.
void close();
Closes the Stream object obtained from the BLOB.
void closeStream( Stream *stream);
| Parameter | Description | 
|---|---|
| stream | The Streamto be closed. | 
Copies a part or all of a BFILE or BLOB into the current BLOB.
| Syntax | Description | 
|---|---|
| void copy( const Bfile &srcBfile, unsigned int numBytes, unsigned int dstOffset = 1, unsigned int srcOffset = 1); | Copies a part of a BFILEinto the currentBLOB. | 
| void copy( const Blob &srcBlob, unsigned int numBytes, unsigned int dstOffset = 1, unsigned int srcOffset = 1); | Copies a part of a BLOBinto the currentBLOB.If the destination  | 
| Parameter | Description | 
|---|---|
| srcBfile | The BFILEfrom which the data is to be copied. | 
| srcBlob | The BLOBfrom which the data is to be copied. | 
| numBytes | The number of bytes to be copied from the source BFILEorBLOB. Valid values are numbers greater than 0. | 
| dstOffset | The starting position at which to begin writing data into the current BLOB. Valid values are numbers greater than or equal to 1. | 
| srcOffset | The starting position at which to begin reading data from the source BFILEorBLOB. Valid values are numbers greater than or equal to 1. | 
Returns the smallest data size to perform efficient writes to the BLOB.
unsigned int getChunkSize() const;
Returns the content type of the Blob. If a content type has not been assigned, returns a NULL string.
string getContentType();
Returns the BLOB's LobOptionValue for a specified LobOptionType.
Throws an exception if attempting to retrieve a value for an option that is not configured on the database column or partition that stores the BLOB.
LobOptionValue getOptions( LobOptionType optType);
| Parameter | Description | 
|---|---|
| optType | The LobOptionTypesetting requested. These may be combined using bitwiseor(|) to avoid server round trips. See Table 7-1, "Values of Type LobOptionType" and Table 7-2, "Values of Type LobOptionValue" | 
Returns a Stream object from the BLOB. If a stream is open, it is disallowed to open another stream on Blob object, so the user must always close the stream before performing any Blob object operations.
Stream* getStream( unsigned int offset = 1, unsigned int amount = 0);
| Parameter | Description | 
|---|---|
| offset | The starting position at which to begin reading data from the BLOB. Ifoffsetis not specified, the data is written from the beginning of theBLOB. Valid values are numbers greater than or equal to1. | 
| amount | The total number of bytes to be read from the BLOB; ifamountis0, the data is read in a streamed mode from inputoffsetuntil the end of theBLOB. | 
Tests whether the Blob object is initialized. If the Blob object is initialized, then TRUE is returned; otherwise, FALSE is returned.
bool isInitialized() const;
Tests whether the Blob object is atomically NULL. If the Blob object is atomically NULL, then TRUE is returned; otherwise, FALSE is returned.
bool isNull() const;
Tests whether the BLOB is open. If the BLOB is open, then TRUE is returned; otherwise, FALSE is returned.
bool isOpen() const;
Returns the number of bytes in the BLOB.
unsigned int length() const;
Opens the BLOB in read/write or read-only mode.
void open( LobOpenMode mode = OCCI_LOB_READWRITE);
| Parameter | Description | 
|---|---|
| mode | The mode the BLOBis to be opened in. Valid values are:
 | 
Assigns a BLOB to the current BLOB. The source BLOB gets copied to the destination BLOB only when the destination BLOB gets stored in the table.
Blob& operator=( const Blob &srcBlob);
| Parameter | Description | 
|---|---|
| srcBlob | The source BLOBfrom which to copy data. | 
Compares two Blob objects for equality. Two Blob objects are equal if they both refer to the same BLOB. Two NULL Blob objects are not considered equal. If the Blob objects are equal, then TRUE is returned; otherwise, FALSE is returned.
bool operator==( const Blob &srcBlob) const;
| Parameter | Description | 
|---|---|
| srcBlob | The source BLOBto be compared with the currentBLOB. | 
Compares two Blob objects for inequality. Two Blob objects are equal if they both refer to the same BLOB. Two NULL Blob objects are not considered equal. If the Blob objects are not equal, then TRUE is returned; otherwise, FALSE is returned.
bool operator!=( const Blob &srcBlob) const;
| Parameter | Description | 
|---|---|
| srcBlob | The source BLOBto be compared with the currentBLOB. | 
Reads a part or all of the BLOB into a buffer. The actual number of bytes read is returned.
unsigned int read( unsigned int amt, unsigned char *buffer, unsigned int bufsize, unsigned int offset = 1) const;
| Parameter | Description | 
|---|---|
| amt | The number of bytes to be read. Valid values are numbers greater than or equal to 1. | 
| buffer | The buffer that the BLOBdata is to be read into. Valid values are numbers greater than or equal toamt. | 
| buffsize | The size of the buffer that the BLOBdata is to be read into. Valid values are numbers greater than or equal toamt. | 
| offset | The starting position at which to begin reading data from the BLOB. Ifoffsetis not specified, the data is written from the beginning of theBLOB. | 
Sets the content type of the Blob. If the Blob is not a SecureFile, throws an exception.
void setContentType( const string contenttype);
| Parameter | Description | 
|---|---|
| contenttype | The content type of the Blob; an ASCII Mime compliant string. | 
Sets the Blob object to empty.
| Syntax | Description | 
|---|---|
| void setEmpty(); | Sets the Blobobject to empty. | 
| void setEmpty( const Connection* connectionp); | Sets the Blobobject to empty and initializes the connection pointer to the passed parameter. | 
| Parameter | Description | 
|---|---|
| connectionp | The new connection pointer for the BLOBobject. | 
Sets the Blob object to atomically NULL.
void setNull();
Specifies a LobOptionValue for a particular LobOptionType. Enables advanced compression, encryption and deduplication of BLOBs. See Table 7-1, "Values of Type LobOptionType" and Table 7-2, "Values of Type LobOptionValue".
Throws an exception if attempting to set or un-set an option that is not configured on the database column or partition that stores the BLOB.
Throws an exception if attempting to turn off encryption in an encrypted BLOB column.
void setOptions( LobOptionType optType, LobOptionValue optValue);
| Parameter | Description | 
|---|---|
| optType | The LobOptionTypesetting being specified. These may be combined using bitwiseor(|) to avoid server round trips. | 
| optValue | The LobOptionValuesetting for theLobOptionTypespecified by theoptTypeparameter | 
Truncates the BLOB to the new length specified.
void trim( unsigned int newlen);
| Parameter | Description | 
|---|---|
| newlen | The new length of the BLOB. Valid values are numbers less than or equal to the current length of theBLOB. | 
Writes data from a buffer into a BLOB. This method implicitly opens the BLOB, copies the buffer into the BLOB, and implicitly closes the BLOB. If the BLOB is open, use writeChunk() instead. The actual number of bytes written is returned.
unsigned int write( unsigned int amt, unsigned char *buffer, unsigned int bufsize, unsigned int offset = 1);
| Parameter | Description | 
|---|---|
| amt | The number of bytes to be written to the BLOB. | 
| buffer | The buffer containing the data to be written to the BLOB. | 
| buffsize | The size of the buffer containing the data to be written to theBLOB.Valid values are numbers greater than or equal toamt. | 
| offset | The starting position at which to begin writing data into the BLOB. Ifoffsetis not specified, the data is written from the beginning of theBLOB. Valid values are numbers greater than or equal to 1. | 
Writes data from a buffer into a previously opened BLOB. The actual number of bytes written is returned.
unsigned int writeChunk( unsigned int amount, unsigned char *buffer, unsigned int bufsize, unsigned int offset = 1);
| Parameter | Description | 
|---|---|
| amt | The number of bytes to be written to the BLOB. | 
| buffer | The buffer containing the data to be written to the BLOB. | 
| buffsize | The size of the buffer containing the data to be written to the BLOB. Valid values are numbers greater than or equal toamt. | 
| offset | The starting position at which to begin writing data into the BLOB. Ifoffsetis not specified, the data is written from the beginning of theBLOB. Valid values are numbers greater than or equal to1. |