Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (中文) » UltraLite - .NET 编程 » UltraLite .NET 2.0 API 参考 » ULRowUpdatingEventArgs 类

 

ULRowUpdatingEventArgs 构造函数

初始化 ULRowUpdatingEventArgs 类的一个新实例。

语法
Visual Basic
Public Sub New( _
   ByVal row As DataRow, _
   ByVal command As IDbCommand, _
   ByVal statementType As StatementType, _
   ByVal tableMapping As DataTableMapping _
)
C#
public  ULRowUpdatingEventArgs(
   DataRow row,
   IDbCommand command,
   StatementType statementType,
   DataTableMapping tableMapping
);
参数
  • row   要更新的 System.Data.DataRow。

  • command   更新期间执行的 System.Data.IDbCommand。

  • statementType   指定所执行查询类型的 System.Data.StatementType 值之一。

  • tableMapping   通过 DbDataAdapter.Update(System.Data.DataRow[],System.Data.Common.DataTableMapping) 发送的 System.Data.Common.DataTableMapping。

另请参见