MySqlCommand Constructor

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Initializes a new instance of the MySqlCommand class.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.8.4.0

Syntax

C#
public MySqlCommand()
Visual Basic
Public Sub New
Visual C++
public:
MySqlCommand()

Remarks

The base constructor initializes all fields to their default values. The following table shows initial property values for an instance of MySqlCommand.
PropertiesInitial Value
CommandTextempty string ("")
CommandTimeout0
CommandTypeCommandType.Text
ConnectionNull

You can change the value for any of these properties through a separate call to the property.

Examples

The following example creates a MySqlCommand and sets some of its properties.
Visual Basic Copy imageCopy
Public Sub CreateMySqlCommand()
Dim myCommand As New MySqlCommand()
myCommand.CommandType = CommandType.Text
End Sub
C# Copy imageCopy
public void CreateMySqlCommand()
{
MySqlCommand myCommand = new MySqlCommand();
myCommand.CommandType = CommandType.Text;
}

See Also