The LOB feature includes Binary Large Objects (BLOBs) and Character Large Objects (CLOBs). The two methods used to handle the LOB datatype are inline and deferred. The inline method limits the row size for client to server transfers with a maximum message size of 1 megabyte. The deferred method can send more than 1 megabyte of data.
PP2 only supports the inline method for handling LOB datatypes.
Use the following statements to enable or disable LOB support.
Enabling LOB support
Use the following statement:
EXEC SQL SET USINGLOBDATA ON;
You can send or retrieve Non-LOB data with the USINGLOBDATA setting ON.
Disabling LOB support
Use the following statement:
EXEC SQL SET USINGLOBDATA OFF;