Represents a parameter of a FbCommand, and optionally, its mapping to DataSet columns. This class cannot be inherited.
For a list of all members of this type, see FbParameter Members.
System.Object
System.MarshalByRefObject
FirebirdSql.Data.Firebird.FbParameter
Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.
Parameter names are not case sensitive.
public void AddFbParameters() { // ... // create myDataSet and myDataAdapter // ... myDataAdapter.SelectCommand.Parameters.Add("@CategoryName", FbDbType.VarChar, 80).Value = "toasters"; myDataAdapter.SelectCommand.Parameters.Add("@SerialNum", FbDbType.Integer).Value = 239; myDataAdapter.Fill(myDataSet); }
Namespace: FirebirdSql.Data.Firebird
Assembly: FirebirdSql.Data.Firebird (in FirebirdSql.Data.Firebird.dll)
FbParameter Members | FirebirdSql.Data.Firebird Namespace