DBConcurrencyException.Row 属性

定义

获取或设置生成 DataRowDBConcurrencyException 的值。

public:
 property System::Data::DataRow ^ Row { System::Data::DataRow ^ get(); void set(System::Data::DataRow ^ value); };
public System.Data.DataRow? Row { get; set; }
public System.Data.DataRow Row { get; set; }
member this.Row : System.Data.DataRow with get, set
Public Property Row As DataRow

属性值

DataRow 的值。

注解

使用 Row 检索生成 DBConcurrencyExceptionDataRow行的值。 设置 的值 DataRow 不起作用。

执行批处理更新时,如果 ContinueUpdateOnError 所有行更新都失败, DataAdapter 则当其 属性设置为 true时,将引发此异常。 在这种情况下,它DBConcurrencyException包含DataRow更新失败的所有行的对象,而不仅仅是 中的Row一个 DataRow 对象,并且可以通过调用 CopyToRows来检索受影响的DataRow对象。

对象不存在 DataRow 序列化支持。 因此,如果序列化 DBConcurrencyException 对象,则该 Row 对象的序列化版本中的 属性值将设置为 null 值。

适用于

另请参阅