3.7. Binary Data Types
The types Section 3.5.6.1, “BINARY” and Section 3.5.6.3, “VARBINARY” are covered earlier in section Section 3.5, “Character Data Types”.
BLOBs (Binary Large Objects) are complex structures used to store text and binary data of an undefined length, often very large.
Syntax
BLOB [SUB_TYPE <subtype>]
[SEGMENT SIZE <segment size>]
[CHARACTER SET <character set>]
[COLLATE <collation name>]
Shortened syntax
BLOB (<segment size>)
BLOB (<segment size>, <subtype>)
BLOB (, <subtype>)
Formally, the COLLATE clause is not part of the data type declaration, and its position depends on the syntax of the statement.
3.7.1. BLOB Subtypes
The optional SUB_TYPE parameter specifies the nature of data written to the column.
Firebird provides two pre-defined subtypes for storing user data:
- Subtype 0:
BINARY If a subtype is not specified, the specification is assumed to be for untyped data and the default
SUB_TYPE 0is applied. The alias for subtype zero isBINARY. This is the subtype to specify when the data are any form of binary file or stream: images, audio, word-processor files, PDFs and so on.- Subtype 1:
TEXT Subtype 1 has an alias,
TEXT, which can be used in declarations and definitions. For instance,BLOB SUB_TYPE TEXT. It is a specialized subtype used to store plain text data that is too large to fit into a string type. ACHARACTER SETmay be specified, if the field is to store text with a different encoding to that specified for the database. From Firebird 2.0, aCOLLATEclause is also supported.Specifying a
CHARACTER SETwithoutSUB_TYPEimpliesSUB_TYPE TEXT.
Custom SubtypesIt is also possible to add custom data subtypes, for which the range of enumeration from -1 to -32,768 is reserved. Custom subtypes enumerated with positive numbers are not allowed, as the Firebird engine uses the numbers from 2-upward for some internal subtypes in metadata.
3.7.2. BLOB Specifics
SizeThe maximum size of a BLOB field is limited to 4GB, regardless of whether the server is 32-bit or 64-bit.
(The internal structures related to BLOBs maintain their own 4-byte counters.)
For a page size of 4 KB (4096 bytes) the maximum size is lower — slightly less than 2GB.
Operations and ExpressionsText BLOBs of any length and any character set — including multi-byte — can be operands for practically any statement or internal functions. The following operators are supported completely:
= | (assignment) |
=, <>, <, <=, >, >= | (comparison) |
| (concatenation) |
|
|
|
|
|
|
As an efficient alternative to concatenation, you can also use BLOB_APPEND().
Partial support:
An error occurs with these if the search argument is larger than or equal to 32 KB:
STARTING [WITH],LIKE,CONTAININGAggregation clauses work not on the contents of the field itself, but on the BLOB ID. Aside from that, there are some quirks:
SELECT DISTINCTreturns several NULL values by mistake if they are present
ORDER BY—
GROUP BYconcatenates the same strings if they are adjacent to each other, but does not do it if they are remote from each other
BLOB StorageBy default, a regular record is created for each BLOB and it is stored on a data page that is allocated for it. If the entire
BLOBfits onto this page, it is called a level 0 BLOB. The number of this special record is stored in the table record and occupies 8 bytes.If a
BLOBdoes not fit onto one data page, its contents are put onto separate pages allocated exclusively to it (blob pages), while the numbers of these pages are stored into theBLOBrecord. This is a level 1 BLOB.If the array of page numbers containing the
BLOBdata does not fit onto a data page, the array is put on separate blob pages, while the numbers of these pages are put into theBLOBrecord. This is a level 2 BLOB.Levels higher than 2 are not supported.
See alsoFILTER, DECLARE FILTER, BLOB_APPEND()