AdomdCommand.ExecuteNonQuery-Methode
Runs the AdomdCommand without returning any results.
Namespace: Microsoft.AnalysisServices.AdomdClient
Assembly: Microsoft.AnalysisServices.AdomdClient (in Microsoft.AnalysisServices.AdomdClient.dll)
Syntax
'Declaration
Public Function ExecuteNonQuery As Integer
'Usage
Dim instance As AdomdCommand
Dim returnValue As Integer
returnValue = instance.ExecuteNonQuery()
public int ExecuteNonQuery()
public:
virtual int ExecuteNonQuery() sealed
abstract ExecuteNonQuery : unit -> int
override ExecuteNonQuery : unit -> int
public final function ExecuteNonQuery() : int
Rückgabewert
Typ: System.Int32
A value of one (1).
Implementiert
Ausnahmen
Ausnahme | Bedingung |
---|---|
AdomdErrorResponseException | The provider returned an error in response. |
AdomdUnknownResponseException | The provider sent an unrecognizable response. |
AdomdConnectionException | The connection was broken. |
System.InvalidOperationException | An error occurred because one of the following conditions was met:
|
Hinweise
You can use the ExecuteNonQuery method to run commands that typically do not return a CellSet, such as data definition language (DDL) commands or writeback commands.