The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
OracleParameterCollection::Add Method (String^, OracleType, Int32, String^)
.NET Framework (current version)
Adds an OracleParameter to the OracleParameterCollection given the parameter name, data type, column length, and source column name.
Assembly: System.Data.OracleClient (in System.Data.OracleClient.dll)
public: OracleParameter^ Add( String^ parameterName, OracleType dataType, int size, String^ srcColumn )
Parameters
- parameterName
-
Type:
System::String^
The name of the parameter.
- dataType
-
Type:
System.Data.OracleClient::OracleType
One of the OracleType values.
- size
-
Type:
System::Int32
The length of the column.
- srcColumn
-
Type:
System::String^
The name of the source column.
Return Value
Type: System.Data.OracleClient::OracleParameter^A reference to the new OracleParameter object.
The following example creates an OracleParameterCollection, adds an instance of OracleParameter to the collection, and returns a reference to the new OracleParameter.
.NET Framework
Available since 1.1
Available since 1.1
Show: