Skip to content

ABIGetRepSentLogCount

ABIGetRepSentLogCount#

Syntax#

int ABIGetRepSentLogCount(
   ABIRepSentLogCount **aHandle );

Return Values#

If the function succeeds, the number of rows in the result set brought to aHandle is returned. If unsuccessful, an error code is returned as a negative integer value.

Description#

In the V$REPSENDER_SENT_LOG_COUNT performance view, this function searches the number of rows by classifying logs sent by the redundant sender by DML type.

If the function succeeds, a pointer to an array of type ABIRepSentLogCount is stored, which contains the result set in aHandle.

Example#

Please refer to sample_10.c for an application related to this function.

ABIRepSentLogCount *sRepSentLogCount;
int sRowCount;

sRowCount = ABIRepSentLogCount( &sRepSentLogCount );