DbDataAdapter.GetBatchedParameter Method
.NET Framework 2.0
Note: This method is new in the .NET Framework version 2.0.
Returns a IDataParameter from one of the commands in the current batch.
Namespace: System.Data.Common
Assembly: System.Data (in system.data.dll)
Assembly: System.Data (in system.data.dll)
protected virtual IDataParameter GetBatchedParameter ( int commandIdentifier, int parameterIndex )
protected IDataParameter GetBatchedParameter ( int commandIdentifier, int parameterIndex )
protected function GetBatchedParameter ( commandIdentifier : int, parameterIndex : int ) : IDataParameter
Parameters
- commandIdentifier
The index of the command to retrieve the parameter from.
- parameterIndex
The index of the parameter within the command.
Return Value
The IDataParameter specified.In DbDataAdapter, this method throws NotSupportedException. Classes that inherit from DbDataAdapter override this method to provide support for batches.
Notes to Implementers This method is protected and is designed for use by a .NET Framework data provider. If a class that inherits from DbDataAdapter supports batches, that class overrides this method to allow users to execute a batch. An implementation uses the commandIdentifier provided to locate the requested command, then uses the parameterIndex provided to locate the requested parameter. For example, a commandIdentifier of 0 and a parameterIndex of 0 returns the first parameter from the first command in the batch.Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.