共用方式為


CommandText 屬性

Gets or sets the command to run.

命名空間:  Microsoft.AnalysisServices.AdomdClient
組件:  Microsoft.AnalysisServices.AdomdClient (在 Microsoft.AnalysisServices.AdomdClient.dll 中)

語法

'宣告
Public Property CommandText As String
    Get
    Set
'用途
Dim instance As AdomdCommand
Dim value As String

value = instance.CommandText

instance.CommandText = value
public string CommandText { get; set; }
public:
virtual property String^ CommandText {
    String^ get () sealed;
    void set (String^ value) sealed;
}
abstract CommandText : string with get, set
override CommandText : string with get, set
final function get CommandText () : String
final function set CommandText (value : String)

屬性值

型別:System. . :: . .String
A string that contains the command for the AdomdCommand. The default value is an empty string.

實作

IDbCommand. . :: . .CommandText

備註

You can use either the CommandText property or the CommandStream property to provide a command to be run by the AdomdCommand. If either both properties are set or neither property is set, then an exception is thrown when the AdomdCommand tries to run the command.

The CommandText property can take either a Multidimensional Expressions (MDX) command or an XML for Analysis compliant command (that is, a command that can be framed by the <Command> tag within an XML for Analysis request).