The following syntax represents the available subset when your select list
includes one or more LONG columns.
Remember, a LONG column can be
referenced only in a select list and/or a host variable declaration.
SELECT [ALL] {*
[Owner.]Table.*
CorrelationName.*
CorrelationName.ColumnName} [,...] [INTO HostVariableDeclaration] FROM {[Owner.]FromTableName [CorrelationName]} [,...]
As noted earlier,
the concept of how LONG column data is retrieved differs from that of standard
columns. The LONG column descriptor (rather than the data itself)
is selected or fetched into a
host variable. In the case of a dynamic FETCH command, the LONG column
descriptor information goes to the data buffer.
In any case, the LONG column data is written to a file or
random heap space.
When the following SELECT command is executed, :HostPartPic will contain the
LONG column descriptor information for column PartPicture. LONG column
data
will go to the output device specified when column PartPicture was last
inserted or updated.
SELECT PartNumber, PartPicture
INTO :HostPartNum, :HostPartPic
FROM PartsTable
WHERE PartNumber = 200
|
Using LONG Columns with a SELECT Command |
 |
Should an error occur before completion of the SELECT command,
any operating
system files written before the error occurred remain on the system, and
LONG column descriptors written to a host variable array remain.
It is your responsibility to remove such files as appropriate.
Using LONG Columns with a Dynamic FETCH Command |
 |
If you have the need to dynamically retrieve LONG column data, the
sqlrowbuf column of the sqlda, as always, contains the address of the
data buffer. However, the data buffer, rather than containing LONG column
data, holds
the 96-byte LONG column descriptor.
The sqltype field of the format array holds a data type ID number
of 15 for a LONG
BINARY column and 16 for a LONG VARBINARY column.
And the sqltotallen and sqlvallen columns will always contain a value
of 96 (indicating the length of the descriptor).
When a NULL is fetched as the LONG column value, no external files are
created, and the associated indicator variable for the LONG column
descriptor is set to -1.