dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlParameter Class / MySqlParameter Constructor / MySqlParameter Constructor()
Example

In This Topic
    MySqlParameter Constructor()
    In This Topic
    Initializes a new instance of the MySqlParameter class.
    Syntax
    'Declaration
     
    Public Function New()
    public MySqlParameter()
    Remarks
    The base constructor initializes all fields to their default values.
    Example
    The following example creates a new MySqlParameter and sets some of its properties.
    public void CreateMySqlParameter()
    {
      MySqlParameter myParameter = new MySqlParameter();
      myParameter.ParameterName = "DName";
      myParameter.MySqlType = MySqlType.VarChar;
      myParameter.Direction = ParameterDirection.Input;
      myParameter.Size = 15;
    }
    Public Sub CreateMySqlParameter()
      Dim myParameter As New MySqlParameter()
      myParameter.ParameterName = "DName"
      myParameter.MySqlType = MySqlType.VarChar
      myParameter.Direction = ParameterDirection.Input
      myParameter.Size = 15
    End Sub
    See Also