int CCFXQuery::GetRowCount(void)
Returns the number of rows contained in a query.
The following example retrieves the number of rows in a query and writes it back to the user:
CCFXQuery* pQuery = pRequest->GetQuery() ;
    char buffOutput[256] ;
    wsprintf( buffOutput,
        "The number of rows in the query is %ld.",
        pQuery->GetRowCount() ) ;
    pRequest->Write( buffOutput ) ;