OdbcRowUpdatingEventArgs 类

定义

RowUpdating 事件提供数据。

public ref class OdbcRowUpdatingEventArgs sealed : System::Data::Common::RowUpdatingEventArgs
public sealed class OdbcRowUpdatingEventArgs : System.Data.Common.RowUpdatingEventArgs
type OdbcRowUpdatingEventArgs = class
    inherit RowUpdatingEventArgs
Public NotInheritable Class OdbcRowUpdatingEventArgs
Inherits RowUpdatingEventArgs
继承
OdbcRowUpdatingEventArgs

注解

RowUpdating 更新行之前引发 事件。

使用 Update 方法时,每个更新的数据行都会发生两个事件: RowUpdatingRowUpdated。 更新操作的执行顺序如下:

  1. 中的 DataRow 值将移动到参数值。

  2. 引发 OnRowUpdating 事件。

  3. 命令将执行。

  4. 如果命令设置为 FirstReturnedRecord,则第一个返回的结果将放置在 中 DataRow

  5. 如果有输出参数,则它们放置在 中 DataRow

  6. 引发 OnRowUpdated 事件。

  7. 调用 AcceptChanges

构造函数

OdbcRowUpdatingEventArgs(DataRow, IDbCommand, StatementType, DataTableMapping)

初始化 OdbcRowUpdatingEventArgs 类的新实例。

属性

BaseCommand

获取或设置此类的实例的 IDbCommand 对象。

(继承自 RowUpdatingEventArgs)
Command

获取或设置当调用 OdbcCommand 时执行的 Update(DataSet)

Errors

获取当 Command 执行时 .NET 数据提供程序生成的任何错误。

(继承自 RowUpdatingEventArgs)
Row

获取要作为插入、更新或删除操作的一部分发送到服务器的 DataRow

(继承自 RowUpdatingEventArgs)
StatementType

获取要执行的 SQL 语句的类型。

(继承自 RowUpdatingEventArgs)
Status

获取或设置 UpdateStatus 属性的 Command

(继承自 RowUpdatingEventArgs)
TableMapping

获取要通过 DataTableMapping 发送的 Update(DataSet)

(继承自 RowUpdatingEventArgs)

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

适用于