RowCount property

UL Ext.: Returns the number of rows in the cursor.

Syntax
Visual Basic

Public Readonly Property RowCount As Integer
C#

public int RowCount  { get;}
Property value

The number of rows in the cursor.

Remarks

One use for RowCount is to decide when to delete old rows to save space. Old rows can be deleted from the UltraLite database without being deleted from the consolidated database using the ULConnection.StopSynchronizationDelete method.

See also