OdbcParameterCollection::Add Method (String^, Object^)
Adds an OdbcParameter to the OdbcParameterCollection given the parameter name and value.
Assembly: System.Data (in System.Data.dll)
public: [ObsoleteAttribute("Add(String parameterName, Object value) has been deprecated. Use AddWithValue(String parameterName, Object value). http://go.microsoft.com/fwlink/?linkid=14202", false)] OdbcParameter^ Add( String^ parameterName, Object^ value )
Parameters
- parameterName
-
Type:
System::String^
The name of the parameter.
- value
-
Type:
System::Object^
The Value of the OdbcParameter to add to the collection.
| Exception | Condition |
|---|---|
| InvalidCastException | The value parameter is not an OdbcParameter. |
Use caution when using this overload of the Add method to specify integer parameter values. Because this overload takes a value of type Object, you must convert the integer value to an Object type when the value is zero, as the following C# example demonstrates.
parameters.Add("@pname", Convert.ToInt32(0));
If you do not perform this conversion, the compiler will assume you are attempting to call the OdbcParameterCollection::Add overload.
Available since 1.1