Compartir a través de


DataCommand.Prepare (Método) (String, DataCommandType, array<IVsDataParameter )

Prepara el comando especificado en el origen de datos de ejecutarse; el comando puede ser ejecutado varias veces, con parámetros diferentes.

Espacio de nombres:  Microsoft.VisualStudio.Data.Framework
Ensamblado:  Microsoft.VisualStudio.Data.Framework (en Microsoft.VisualStudio.Data.Framework.dll)

Sintaxis

'Declaración
Public Function Prepare ( _
    command As String, _
    commandType As DataCommandType, _
    parameters As IVsDataParameter() _
) As String
public string Prepare(
    string command,
    DataCommandType commandType,
    IVsDataParameter[] parameters
)
public:
virtual String^ Prepare(
    String^ command, 
    DataCommandType commandType, 
    array<IVsDataParameter^>^ parameters
) sealed
abstract Prepare : 
        command:string * 
        commandType:DataCommandType * 
        parameters:IVsDataParameter[] -> string 
override Prepare : 
        command:string * 
        commandType:DataCommandType * 
        parameters:IVsDataParameter[] -> string 
public final function Prepare(
    command : String, 
    commandType : DataCommandType, 
    parameters : IVsDataParameter[]
) : String

Parámetros

  • command
    Tipo: System.String
    Un comando de ejecución que es específico de un origen de datos.

Valor devuelto

Tipo: System.String
Un identificador de comando preparado que puede pasarse más tarde para Execute o al método de ExecuteWithoutResults utilizando el tipo de comando Prepared.

Implementaciones

IVsDataCommand.Prepare(String, DataCommandType, array<IVsDataParameter[])

Excepciones

Excepción Condición
ArgumentNullException

El valor del parámetro command es nullreferencia null (Nothing en Visual Basic).

ArgumentOutOfRangeException

El parámetro commandTimeout es menor que -1.

Comentarios

Otras excepciones que aparecen indican que la preparación falla por un motivo proveedor- especificada.

Seguridad de .NET Framework

Vea también

Referencia

DataCommand Clase

Prepare (Sobrecarga)

Microsoft.VisualStudio.Data.Framework (Espacio de nombres)

DataCommand