SqlCursorRowStatus

Returns the row fetch status value for a row in the cursor fetch buffer.

Syntax

SqlCursorRowStatus& ( sqlconn&, row&, status& )

where

sqlconn&
Is a SQL Server connection. The value of sqlconn& is returned by SqlOpen.
row&
Is the number of the row in the fetch buffer. The first row is number 1.
status&
Is the fetch status indicator for the specified row&. A row fetch status value is a bitmap of fetch status values that are ORed together.

Client cursor, transparent server cursor:

For more information about fetch status values, see SqlCursorFetch.

Explicit server cursor:

For more information about fetch status values, see SqlCursorFetchEx.

Returns

SUCCEED (1) or FAIL (0).

Remarks

This function replaces the pstatus&() parameter of SqlCursorOpen.