| Devart.Data.MySql Namespace : MySqlParameterCollection Class |
Collects all parameters relevant to a MySqlCommand as well as their respective mappings to
For a list of all members of this type, see MySqlParameterCollection members.
Devart.Common.DbParameterBaseCollection
Devart.Data.MySql.MySqlParameterCollection
[Visual Basic]
Public Class MySqlParameterCollection
Inherits DbParameterBaseCollection
Implements ICollection , IEnumerable , IList , IDataParameterCollection [C#]
public class MySqlParameterCollection : DbParameterBaseCollection, ICollection , IEnumerable , IList , IDataParameterCollection The number of parameters in the collection must be equal to the number of parameter placeholders within the command text, or MySQL raises an error.
The following example adds instance of MySqlParameter to collection.
[C#]
public void AddMySqlParameters()
{
// Create myConnection and myCommand.
myCommand.CommandText = "DELETE Test.Dept WHERE DeptNo = :DeptNo";
myCommand.Parameters.Add("DeptNo", MySqlType.Int).Value = 50;
myCommand.ExecuteNonQuery();
} [Visual Basic]
Public Sub AddMySqlParameters()
// Create myConnection and myCommand.
myCommand.CommandText = "DELETE Test.Dept WHERE DeptNo = :DeptNo"
myCommand.Parameters.Add("DeptNo", MySqlType.Int).Value = 50
myCommand.ExecuteNonQuery()
End Sub 'AddMySqlParameters
MySqlParameterCollection Members | Devart.Data.MySql Namespace | MySqlParameter Class | MySqlCommand Class
© 2002 - 2013 Devart. All Rights Reserved.