IRowset.AddRefRows(Int32, Int32[], Int32[], Int32[]) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
向现有的行句柄添加引用数。
public:
void AddRefRows(int cRows, cli::array <int> ^ hRows, [Runtime::InteropServices::Out] cli::array <int> ^ % refCounts, [Runtime::InteropServices::Out] cli::array <int> ^ % rowStatus);
public void AddRefRows (int cRows, int[] hRows, out int[] refCounts, out int[] rowStatus);
abstract member AddRefRows : int * int[] * Int32[] * Int32[] -> unit
Public Sub AddRefRows (cRows As Integer, hRows As Integer(), ByRef refCounts As Integer(), ByRef rowStatus As Integer())
参数
- cRows
- Int32
要为其递增引用数的行数。
- hRows
- Int32[]
要为其递增引用数的行句柄数组。 数组中每出现一次行句柄,行句柄的引用数即递增 1。
- refCounts
- Int32[]
包含 cRows
元素的数组,用于返回每个行句柄的新引用数。 使用方为此数组分配内存。 如果 refCounts
为 null 指针,则不返回引用数。
- rowStatus
- Int32[]
包含 cRows
元素的数组,用于返回指示 hRows
中指定的每行状态的值。
注解
注意
Microsoft.VisualBasic.Compatibility.VB6 命名空间中的函数和对象用于工具从 Visual Basic 6.0 升级到 Visual Basic 2008。 多数情况下,这些函数和对象可再现 .NET Framework 中其他命名空间的功能。 只有当 Visual Basic 6.0 代码模型与 .NET Framework 实现有显著区别时,才必须使用这些函数和对象。