SqlCeDataReader.RecordsAffected Property

Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.

Namespace:  System.Data.SqlServerCe
Assembly:  System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)

Syntax

'Declaration
Public Overrides ReadOnly Property RecordsAffected As Integer
    Get
'Usage
Dim instance As SqlCeDataReader
Dim value As Integer

value = instance.RecordsAffected
public override int RecordsAffected { get; }
public:
virtual property int RecordsAffected {
    int get () override;
}
abstract RecordsAffected : int
override RecordsAffected : int
override function get RecordsAffected () : int

Property Value

Type: System.Int32
The number of rows changed, inserted, or deleted; 0 if no rows were affected or the statement failed; and -1 for SELECT statements.

Implements

IDataReader.RecordsAffected

Remarks

The RecordsAffected property is not set until all rows are read and you close the SqlCeDataReader.

IsClosed and RecordsAffected are the only properties that you can call after the SqlCeDataReader is closed.

See Also

Reference

SqlCeDataReader Class

System.Data.SqlServerCe Namespace