Sugerir traducción
 
Otros han sugerido:

progress indicator
No hay más sugerencias.
Evaluar y enviar comentarios
Contraer todo/Expandir todo Contraer todo
Ver contenido:  en paraleloVer contenido: en paralelo
.NET Framework Class Library
IDataParameter Interface

Represents a parameter to a Command object, and optionally, its mapping to DataSet columns; and is implemented by .NET Framework data providers that access data sources.

Namespace:  System.Data
Assembly:  System.Data (in System.Data.dll)
Visual Basic
Public Interface IDataParameter
C#
public interface IDataParameter
Visual C++
public interface class IDataParameter
F#
type IDataParameter =  interface end

The IDataParameter type exposes the following members.

  NameDescription
Public propertySupported by the XNA FrameworkDbTypeGets or sets the DbType of the parameter.
Public propertySupported by the XNA FrameworkDirectionGets or sets a value indicating whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter.
Public propertySupported by the XNA FrameworkIsNullableGets a value indicating whether the parameter accepts null values.
Public propertySupported by the XNA FrameworkParameterNameGets or sets the name of the IDataParameter.
Public propertySupported by the XNA FrameworkSourceColumnGets or sets the name of the source column that is mapped to the DataSet and used for loading or returning the Value.
Public propertySupported by the XNA FrameworkSourceVersionGets or sets the DataRowVersion to use when loading Value.
Public propertySupported by the XNA FrameworkValueGets or sets the value of the parameter.
Top

The IDataParameter interface allows an inheriting class to implement a Parameter class, which represents a parameter to a Command object. For more information about Parameter classes, see Configuring Parameters and Parameter Data Types (ADO.NET).

An application does not create an instance of the IDataParameter interface directly, but creates an instance of a class that inherits IDataParameter.

Classes that inherit IDataParameter must implement the inherited members, and typically define additional members to add provider-specific functionality. For example, the IDataParameter interface defines the DbType property. In turn, the OleDbParameter class inherits this property, and also defines the OleDbType property.

Notes to Implementers

To promote consistency among .NET Framework data providers, name the inheriting class in the form Prv Parameter where Prv is the uniform prefix given to all classes in a specific .NET Framework data provider namespace. For example, Sql is the prefix of the SqlCommand class in the System.Data.SqlClient namespace.

When you inherit from the IDataParameter interface, you should implement the following constructors:

Item

Description

PrvParameter()

Initializes a new instance of the Parameter class.

PrvParameter(string name, PrvDbType dataType)

Initializes a new instance of the Parameter class with the parameter name and data type.

PrvParameter(string name, object value)

Initializes a new instance of the Parameter class with the parameter name and an object that is the value of the Parameter.

PrvParameter(string name, PrvDbType dataType, int size)

Initializes a new instance of the Parameter class with the parameter name, data type, and width.

PrvParameter(string name, PrvDbType dataType, int size, string srcColumn)

Initializes a new instance of the DbParameter class with the parameter name, data type, width, and source column name.

PrvParameter(string parameterName, PrvDbType dbType, int size, ParameterDirection direction, Boolean isNullable, Byte precision, Byte scale, string srcColumn, DataRowVersion srcVersion, object value)

Initializes a new instance of the OleDbParameter class with the parameter name, data type, width, source column name, parameter direction, numeric precision, and other properties.

The following example creates multiple instances of the derived class, SqlParameter, through the SqlParameterCollection collection within the SqlDataAdapter. These parameters are used to select data from the data source and place the data in the DataSet. This example assumes that a DataSet and a SqlDataAdapter have already been created with the appropriate schema, commands, and connection.

Visual Basic
Public Sub AddSqlParameters()
    ' ...
    ' create categoriesDataSet and categoriesAdapter
    ' ...
    categoriesAdapter.SelectCommand.Parameters.Add( _
        "@CategoryName", SqlDbType.VarChar, 80).Value = "toasters"
    categoriesAdapter.SelectCommand.Parameters.Add( _
        "@SerialNum", SqlDbType.Int).Value = 239

    categoriesAdapter.Fill(categoriesDataSet)
End Sub  
C#
public void AddSqlParameters() 
{
// ...
// create categoriesDataSet and categoriesAdapter
// ...

  categoriesAdapter.SelectCommand.Parameters.Add(
    "@CategoryName", SqlDbType.VarChar, 80).Value = "toasters";
  categoriesAdapter.SelectCommand.Parameters.Add(
    "@SerialNum", SqlDbType.Int).Value = 239;
  categoriesAdapter.Fill(categoriesDataSet);

}

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role not supported), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Biblioteca de clases de .NET Framework
IDataParameter (Interfaz)

Representa un parámetro para un objeto Command y, de forma opcional, su asignación a columnas del DataSet. Lo implementan los proveedores de datos de .NET Framework que tienen acceso a los orígenes de datos.

Espacio de nombres:  System.Data
Ensamblado:  System.Data (en System.Data.dll)
Visual Basic
Public Interface IDataParameter
C#
public interface IDataParameter
Visual C++
public interface class IDataParameter
F#
type IDataParameter =  interface end

El tipo IDataParameter expone los siguientes miembros.

  NombreDescripción
Propiedad públicaCompatible con XNA FrameworkDbTypeObtiene o establece el DbType del parámetro.
Propiedad públicaCompatible con XNA FrameworkDirectionObtiene o establece un valor que indica si el parámetro es sólo de entrada, sólo de salida, bidireccional o un parámetro de un valor devuelto de procedimiento almacenado.
Propiedad públicaCompatible con XNA FrameworkIsNullableObtiene un valor que indica si el parámetro acepta valores nulos.
Propiedad públicaCompatible con XNA FrameworkParameterNameObtiene o establece el nombre de IDataParameter.
Propiedad públicaCompatible con XNA FrameworkSourceColumnObtiene o establece el nombre de la columna de origen que se asigna al DataSet y que se utiliza para cargar o devolver el Value.
Propiedad públicaCompatible con XNA FrameworkSourceVersionObtiene o establece el DataRowVersion que se va a utilizar al cargar Value.
Propiedad públicaCompatible con XNA FrameworkValueObtiene o establece el valor del parámetro.
Arriba

La interfaz IDataParameter permite que una clase heredada implemente una clase Parameter, que representa un parámetro para un objeto Command. Para obtener más información sobre las clases Parameter, vea Configurar parámetros y tipos de datos de parámetros (ADO.NET).

Una aplicación no crea una instancia de la interfaz IDataParameter directamente, sino que crea una instancia de una clase que hereda de IDataParameter.

Las clases que heredan de IDataParameter deben implementar los miembros heredados y suelen definir miembros adicionales para agregar la funcionalidad específica de proveedor. Por ejemplo, la interfaz IDataParameter define la propiedad DbType. A su vez, la clase OleDbParameter hereda esta propiedad y también define la propiedad OleDbType.

Notas para los implementadores

Para potenciar la coherencia entre los proveedores de datos de .NET Framework, asigne a la clase heredada un nombre con el formato Prv Parameter, donde Prv es el prefijo uniforme que se asigna a todas las clases de un espacio de nombres de proveedor de datos de .NET Framework específico. Por ejemplo, Sql es el prefijo de la clase SqlCommand en el espacio de nombres System.Data.SqlClient.

Al heredar de la interfaz IDataParameter, se deben implementar los siguientes constructores:

Elemento

Descripción

PrvParameter()

Inicializa una nueva instancia de la clase Parameter.

PrvParameter(string name, PrvDbType dataType)

Inicializa una nueva instancia de la clase Parameter con el nombre de parámetro y el tipo de datos.

PrvParameter(string name, object value)

Inicializa una nueva instancia de la clase Parameter con el nombre de parámetro y un objeto que es el valor de Parameter.

PrvParameter(string name, PrvDbType dataType, int size)

Inicializa una nueva instancia de la clase Parameter con el nombre de parámetro, el tipo de datos y el ancho.

PrvParameter(string name, PrvDbType dataType, int size, string srcColumn)

Inicializa una nueva instancia de la clase DbParameter con el nombre de parámetro, el tipo de datos, el ancho y el nombre de columna de origen.

PrvParameter(string parameterName, PrvDbType dbType, int size, ParameterDirection direction, Boolean isNullable, Byte precision, Byte scale, string srcColumn, DataRowVersion srcVersion, object value)

Inicializa una nueva instancia de la clase OleDbParameter con el nombre de parámetro, el tipo de datos, el ancho, el nombre de columna de origen, la dirección de parámetros, la precisión numérica y otras propiedades.

En el ejemplo siguiente se crean varias instancias de la clase derivada SqlParameter a través de la colección SqlParameterCollection dentro del SqlDataAdapter. Estos parámetros se utilizan para seleccionar datos del origen de datos y colocarlos en DataSet. En este ejemplo se supone que ya se han creado un DataSet y un SqlDataAdapter con el esquema, los comandos y la conexión adecuados.

Visual Basic
Public Sub AddSqlParameters()
    ' ...
    ' create categoriesDataSet and categoriesAdapter
    ' ...
    categoriesAdapter.SelectCommand.Parameters.Add( _
        "@CategoryName", SqlDbType.VarChar, 80).Value = "toasters"
    categoriesAdapter.SelectCommand.Parameters.Add( _
        "@SerialNum", SqlDbType.Int).Value = 239

    categoriesAdapter.Fill(categoriesDataSet)
End Sub  
C#
public void AddSqlParameters() 
{
// ...
// create categoriesDataSet and categoriesAdapter
// ...

  categoriesAdapter.SelectCommand.Parameters.Add(
    "@CategoryName", SqlDbType.VarChar, 80).Value = "toasters";
  categoriesAdapter.SelectCommand.Parameters.Add(
    "@SerialNum", SqlDbType.Int).Value = 239;
  categoriesAdapter.Fill(categoriesDataSet);

}

.NET Framework

Compatible con: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Compatible con: 4, 3.5 SP1

Windows 7, Windows Vista SP1 o posterior, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (no se admite Server Core), Windows Server 2008 R2 (se admite Server Core con SP1 o posterior), Windows Server 2003 SP2

.NET Framework no admite todas las versiones de todas las plataformas. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.
Contenido de la comunidad   ¿Qué es Community Content?
Agregar contenido nuevo RSS  Anotaciones
Processing
© 2012 Microsoft. Reservados todos los derechos. Términos de uso | Marcas Registradas | Privacidad
Page view tracker