AdomdCommand.ExecuteNonQuery Method ()

 

Runs the AdomdCommand without returning any results.

Namespace:   Microsoft.AnalysisServices.AdomdClient
Assembly:  Microsoft.AnalysisServices.AdomdClient (in Microsoft.AnalysisServices.AdomdClient.dll)

Syntax

public int ExecuteNonQuery()
public:
virtual int ExecuteNonQuery() sealed
abstract ExecuteNonQuery : unit -> int
override ExecuteNonQuery : unit -> int
Public Function ExecuteNonQuery As Integer

Return Value

Type: System.Int32

A value of one (1).

Implements

IDbCommand.ExecuteNonQuery()

Exceptions

Exception Condition
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:

Remarks

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.

See Also

AdomdCommand Class
Microsoft.AnalysisServices.AdomdClient Namespace

Return to top