MySqlCommand Constructor
From MySQL Connector/Net
MySQL Connector/Net
| MySqlCommand Constructor |
Initializes a new instance of the MySqlCommand class.
Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
The base constructor initializes all fields to their default values. The
following table shows initial property values for an instance of MySqlCommand.
| Properties | Initial Value |
|---|---|
| CommandText | empty string ("") |
| CommandTimeout | 0 |
| CommandType | CommandType.Text |
| Connection | Null |
You can change the value for any of these properties through a separate call to the property.
The following example creates a MySqlCommand and
sets some of its properties.
public void CreateMySqlCommand() { MySqlCommand myCommand = new MySqlCommand(); myCommand.CommandType = CommandType.Text; }
Public Sub CreateMySqlCommand() Dim myCommand As New MySqlCommand() myCommand.CommandType = CommandType.Text End Sub
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.