This document is archived and information here might be outdated. Recommended version. |
Indicates if a dataset has to count each row to get the number of rows in the dataset.
[Visual Basic .NET]
Public ReadOnly Property RowCountIsCalculated As Boolean
[C#]
public bool RowCountIsCalculated {get;}
[C++]
HRESULT get_RowCountIsCalculated(
Boolean* rowCountCalculated
);
[C++] Parameters rowCountCalculated [out, retval]
rowCountCalculated is a parameter of type bool*
Returns true if the only way to count the number of rows in the dataset is to get a cursor and count. If the data source has a faster method for getting a count of rows in a dataset, this method should return false and the optional interface IPlugInFastRowCount should be implemented on dataset helpers returned by OpenDataset. It is always safe to return true here.
IPlugInWorkspaceHelper Interface | IPlugInFastRowCount Interface