Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

IDbCommand::CommandText Property

 

Gets or sets the text command to run against the data source.

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

property String^ CommandText {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The text command to execute. The default value is an empty string ("").

When the CommandType property is set to StoredProcedure, set the CommandText property to the name of the stored procedure. The user may be required to use escape character syntax if the stored procedure name contains any special characters. The command will call this stored procedure when you call one of the Execute methods.

The following example creates an instance of a derived class, OleDbCommand and sets some of its properties.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft