sqllob data structure
This structure is used to represent a LOB data type in a host programming language.
| 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];
};