IDbCommand.CommandText Proprietà

Definizione

Ottiene o imposta il comando di testo da eseguire sull'origine dati.

public:
 property System::String ^ CommandText { System::String ^ get(); void set(System::String ^ value); };
public string CommandText { get; set; }
member this.CommandText : string with get, set
Public Property CommandText As String

Valore della proprietà

Comando di testo da eseguire. Il valore predefinito è una stringa vuota ("").

Esempio

L'esempio seguente crea un'istanza di una classe OleDbCommand derivata e imposta alcune delle relative proprietà.

public void CreateOleDbCommand()
{
   OleDbCommand command = new OleDbCommand();
   command.CommandText = "SELECT * FROM Categories ORDER BY CategoryID;";
   command.CommandType = CommandType.Text;
}
Public Sub CreateOleDbCommand()
    Dim command As New OleDbCommand()
    command.CommandText = "SELECT * FROM Categories ORDER BY CategoryID;"
    command.CommandType = CommandType.Text
End Sub

Commenti

Quando la CommandType proprietà è impostata su StoredProcedure, impostare la CommandText proprietà sul nome della stored procedure. L'utente può essere richiesto di usare la sintassi dei caratteri di escape se il nome della stored procedure contiene eventuali caratteri speciali. Il comando chiamerà questa stored procedure quando si chiama uno dei metodi Execute.

Si applica a

Vedi anche