DB2 10.5 for Linux, UNIX, and Windows

sqllob data structure

This structure is used to represent a LOB data type in a host programming language.

Table 1. Fields in the sqllob structure
Field name Data type Description
length sqluint32 Length in bytes of the data parameter.
data char(1) Data being passed in.

API and data structure syntax

SQL_STRUCTURE sqllob
{
        sqluint32 length;
        char data[1];
};