IRowsetNotify.OnRowChange 方法

定义

将对行的第一个更改或影响整个行的任何更改通知给使用方。

public:
 int OnRowChange(Microsoft::VisualBasic::Compatibility::VB6::IRowset ^ rowset, int cRows, cli::array <int> ^ rghRows, int dbReason, int eventPhase, int fCantDeny);
public int OnRowChange (Microsoft.VisualBasic.Compatibility.VB6.IRowset rowset, int cRows, int[] rghRows, int dbReason, int eventPhase, int fCantDeny);
abstract member OnRowChange : Microsoft.VisualBasic.Compatibility.VB6.IRowset * int * int[] * int * int * int -> int
Public Function OnRowChange (rowset As IRowset, cRows As Integer, rghRows As Integer(), dbReason As Integer, eventPhase As Integer, fCantDeny As Integer) As Integer

参数

rowset
IRowset

指向行集合的指针,由于使用方可能从多个行集合接收通知,所以此指针标识正在调用的行集合。

cRows
Int32

rghRows 中行句柄的计数。

rghRows
Int32[]

正在更改的行的句柄的数组。

dbReason
Int32

DBREASON 的值指示的更改原因。

eventPhase
Int32

此通知的阶段。

fCantDeny
Int32

将此标志设置为 true 时,使用方将无法通过返回 S_FALSE 来禁止该事件,因为提供程序无法撤消该事件。

返回

一个表示结果的 Integer

注解

注意

Microsoft.VisualBasic.Compatibility.VB6 命名空间中的函数和对象用于工具从 Visual Basic 6.0 升级到 Visual Basic。 多数情况下,这些函数和对象可再现 .NET Framework 中其他命名空间的功能。 只有当 Visual Basic 6.0 代码模型与 .NET Framework 实现有显著区别时,才必须使用这些函数和对象。

适用于