Represents a parameter to a
MySqlCommand, and optionally, its mapping to
System.Data.DataSet columns.
The following example creates multiple instances of
MySqlParameter through the
MySqlParameterCollection within the
MySqlDataAdapter. These parameters are used to select data from MySQL and place the data in the
System.Data.DataSet. This example assumes that a
System.Data.DataSet and a
MySqlDataAdapter have already been created with the appropriate schema, commands, and connection.
public void AddMySqlParameters()
{
// ...
// create myDataSet and myDataAdapter
// ...
myDataAdapter.SelectCommand.Parameters.Add("DName", MySqlType.VarChar, 15).Value = "DEVELOPMENT";
myDataAdapter.SelectCommand.Parameters.Add("DeptNo", MySqlType.Int).Value = 50;
myDataAdapter.Fill(myDataSet);
}
Public Sub AddMySqlParameters()
' ...
' create myDataSet and myDataAdapter
' ...
myDataAdapter.SelectCommand.Parameters.Add("DName", MySqlType.VarChar, 15).Value = "DEVELOPMENT"
myDataAdapter.SelectCommand.Parameters.Add("DeptNo", MySqlType.Int).Value = 50
myDataAdapter.Fill(myDataSet)
End Sub