ReleaseResultSetAccessor

PowerBuilder Native Interface

IPB_Session interface:

ReleaseResultSetAccessor method

Description

Releases the pointer obtained using GetResultSetAccessor.

Syntax

ReleaseResultSetAccessor (IPB_ResultSetAccessor* rs)

Argument

Description

rs

A pointer to the IPB_ResultSetAccessor object to be released

Return Values

None.

Examples

This statement releases the IPB_ResultSetAccessor object rsa:

Session->ReleaseResultSetAccessor(rsa);

Usage

When you call ReleaseResultSetAccessor, the Release function of the IPB_ResultSetAccessor interface is called on the rs argument to release the interface pointer.

See Also