IPB_RSItemData interface

Description

The IPB_RSItemData interface is used as an argument to the GetItemData function of IPB_ResultSetAccessor.

Methods

The IPB_RSItemData interface has two methods: SetData and SetNull.




SetData

Description

Sets the data in an IPB_RSItemData structure when the GetItemData function of IPB_ResultSetAccessor is called and the data value is not null.

Syntax

SetData(unsigned long len, void* data)

Argument

Description

len

The length of the data

data

A void pointer to the address of the data

Returns

None.

Usage

If the cell datatype is:

See also




SetNull

Description

Sets the data in an IPB_RSItemData structure to null when the GetItemData function of IPB_ResultSetAccessor is called and the data value is not null.

Syntax

SetNull()

Returns

None.

See also