DataCommand.ExecuteWithoutResults Method (String, DataCommandType, [])

Executes a command, optionally with parameters, but does not request results, instead returning an integer indicating the outcome of the call.

Namespace:  Microsoft.VisualStudio.Data.Framework
Assembly:  Microsoft.VisualStudio.Data.Framework (in Microsoft.VisualStudio.Data.Framework.dll)

Syntax

'宣言
Public Function ExecuteWithoutResults ( _
    command As String, _
    commandType As DataCommandType, _
    parameters As IVsDataParameter() _
) As Integer
'使用
Dim instance As DataCommand
Dim command As String
Dim commandType As DataCommandType
Dim parameters As IVsDataParameter()
Dim returnValue As Integer

returnValue = instance.ExecuteWithoutResults(command, _
    commandType, parameters)
public int ExecuteWithoutResults(
    string command,
    DataCommandType commandType,
    IVsDataParameter[] parameters
)
public:
virtual int ExecuteWithoutResults(
    String^ command, 
    DataCommandType commandType, 
    array<IVsDataParameter^>^ parameters
) sealed
public final function ExecuteWithoutResults(
    command : String, 
    commandType : DataCommandType, 
    parameters : IVsDataParameter[]
) : int

Parameters

  • command
    Type: System.String

    A command to execute that is specific to a data source.

  • parameters
    Type: []

    An array of IVsDataParameter objects representing the command parameters for the specified command type.

Return Value

Type: System.Int32

A DDEX provider–specific integer status code.

Implements

IVsDataCommand.ExecuteWithoutResults(String, DataCommandType, [])

Exceptions

Exception Condition
ArgumentNullException

The command parameter is a null reference (Nothing in Visual Basic).

Remarks

In many cases, the outcome of the call to this method will indicate the number of rows affected.

You can set out and return value parameters by using this call. They are not considered part of the results.

注意

Other exceptions that occur indicate that the execution failed for a provider-specified reason.

Permissions

See Also

Reference

DataCommand Class

DataCommand Members

ExecuteWithoutResults Overload

Microsoft.VisualStudio.Data.Framework Namespace