QuickObjects.DBLibrary Send comments on this topic.
AffectedRecords Property
See Also 
Akal.QuickObjects.DBLibrary Namespace > DatabaseObject Class : AffectedRecords Property

AffectedRecords

Holds an Int32 value which can be used to hold the number of records that are either returned or affected by a query.

This can be very useful in cases where a count of returned rows is needed.


myLabel.Text = myBusinessObject.AffectedRecords.ToString() + " records were returned by your search";

Syntax

C# 
public int AffectedRecords {get; set;}

Requirements

Target Platforms: .NET Framework 1.1 or .NET Framework 2.0

See Also