OracleParameterCollection.Add Method (OracleParameter)
.NET Framework 3.0
Adds the specified OracleParameter to the OracleParameterCollection.
Namespace: System.Data.OracleClient
Assembly: System.Data.OracleClient (in system.data.oracleclient.dll)
Assembly: System.Data.OracleClient (in system.data.oracleclient.dll)
public OracleParameter Add ( OracleParameter value )
public function Add ( value : OracleParameter ) : OracleParameter
Not applicable.
Parameters
- value
The OracleParameter to add to the collection.
Return Value
A reference to the new OracleParameter object.The following example creates an OracleParameterCollection, adds instances of OracleParameter to the collection, and returns a reference to the new OracleParameter.
public void CreateOracleParamColl() { OracleCommand command = new OracleCommand( "SELECT Ename, DeptNo FROM Emp WHERE EmpNo = :pEmpNo", connection); OracleParameterCollection paramCollection = command.Parameters; object parameter = new OracleParameter("pEmpNo", OracleType.Number); int pIndex = paramCollection.Add(parameter); }
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.