OracleParameterCollection Class
Represents a collection of parameters relevant to an OracleCommand as well as their respective mappings to columns in a DataSet. This class cannot be inherited.
System::MarshalByRefObject
System.Data.Common::DbParameterCollection
System.Data.OracleClient::OracleParameterCollection
Assembly: System.Data.OracleClient (in System.Data.OracleClient.dll)
The OracleParameterCollection type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | OracleParameterCollection | Initializes a new instance of the OracleParameterCollection class. |
| Name | Description | |
|---|---|---|
![]() | Count | Returns an Integer containing the number of elements in the OracleParameterCollection. Read-only. (Overrides DbParameterCollection::Count.) |
![]() | IsFixedSize | Gets a value that indicates whether the OracleParameterCollection has a fixed size. (Overrides DbParameterCollection::IsFixedSize.) |
![]() | IsReadOnly | Gets a value that indicates whether the OracleParameterCollection is read-only. (Overrides DbParameterCollection::IsReadOnly.) |
![]() | IsSynchronized | Gets a value that indicates whether the OracleParameterCollection is synchronized. (Overrides DbParameterCollection::IsSynchronized.) |
![]() | Item[Int32] | Gets or sets the OracleParameter at the specified index. |
![]() | Item[String] | Gets or sets the OracleParameter with the specified name. |
![]() | SyncRoot | Gets an object that can be used to synchronize access to the OracleParameterCollection. (Overrides DbParameterCollection::SyncRoot.) |
| Name | Description | |
|---|---|---|
![]() | Add(Object) | Adds the specified OracleParameter object to the OracleParameterCollection. (Overrides DbParameterCollection::Add(Object).) |
![]() | Add(OracleParameter) | Adds the specified OracleParameter to the OracleParameterCollection. |
![]() | Add(String, OracleType) | Adds an OracleParameter to the OracleParameterCollection given the parameter name and data type. |
![]() | Add(String, Object) | Obsolete. Adds an OracleParameter to the OracleParameterCollection given the parameter name and value. |
![]() | Add(String, OracleType, Int32) | Adds an OracleParameter to the OracleParameterCollection given the parameter name, data type, and column length. |
![]() | Add(String, OracleType, Int32, String) | Adds an OracleParameter to the OracleParameterCollection given the parameter name, data type, column length, and source column name. |
![]() | AddRange(Array) | Adds an array of values to the end of the OracleParameterCollection. (Overrides DbParameterCollection::AddRange(Array).) |
![]() | AddRange(array<OracleParameter>) | Adds an array of OracleParameter values to the end of the OracleParameterCollection. |
![]() | AddWithValue | Adds a value to the end of the OracleParameterCollection. |
![]() | Clear | Removes all of the OracleParameter objects from the OracleParameterCollection. (Overrides DbParameterCollection::Clear().) |
![]() | Contains(Object) | Determines whether the specified object is in the OracleParameterCollection. (Overrides DbParameterCollection::Contains(Object).) |
![]() | Contains(OracleParameter) | Determines whether the specified OracleParameter is in the OracleParameterCollection. |
![]() | Contains(String) | Indicates whether an OracleParameter with the specified name is contained in the collection. (Overrides DbParameterCollection::Contains(String).) |
![]() | CopyTo(Array, Int32) | Copies all the elements of the current OracleParameterCollection to the specified one-dimensional Array starting at the specified destination Array index. (Overrides DbParameterCollection::CopyTo(Array, Int32).) |
![]() | CopyTo(array<OracleParameter>, Int32) | Copies all the elements of the current OracleParameterCollection to the specified OracleParameterCollection starting at the specified destination index. |
![]() | CreateObjRef | Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (Inherited from MarshalByRefObject.) |
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetEnumerator | Returns an enumerator that iterates through the OracleParameterCollection. (Overrides DbParameterCollection::GetEnumerator().) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetLifetimeService | Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited from MarshalByRefObject.) |
![]() | GetParameter(Int32) | Returns the DbParameter object at the specified index in the collection. (Inherited from DbParameterCollection.) |
![]() | GetParameter(String) | Returns DbParameter the object with the specified name. (Inherited from DbParameterCollection.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | IndexOf(Object) | Gets the location of the specified Object within the collection. (Overrides DbParameterCollection::IndexOf(Object).) |
![]() | IndexOf(OracleParameter) | Gets the location of the specified OracleParameter within the collection. |
![]() | IndexOf(String) | Gets the location of the specified OracleParameter with the specified name. (Overrides DbParameterCollection::IndexOf(String).) |
![]() | InitializeLifetimeService | Obtains a lifetime service object to control the lifetime policy for this instance. (Inherited from MarshalByRefObject.) |
![]() | Insert(Int32, OracleParameter) | Inserts a OracleParameter object into the OracleParameterCollection at the specified index. |
![]() | Insert(Int32, Object) | Inserts a Object into the OracleParameterCollection at the specified index. (Overrides DbParameterCollection::Insert(Int32, Object).) |
![]() | MemberwiseClone() | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | MemberwiseClone(Boolean) | Creates a shallow copy of the current MarshalByRefObject object. (Inherited from MarshalByRefObject.) |
![]() | Remove(Object) | Removes the specified OracleParameter object from the collection. (Overrides DbParameterCollection::Remove(Object).) |
![]() | Remove(OracleParameter) | Removes the specified OracleParameter object from the collection. |
![]() | RemoveAt(Int32) | Removes the OracleParameter object at the specified index from the collection. (Overrides DbParameterCollection::RemoveAt(Int32).) |
![]() | RemoveAt(String) | Removes the OracleParameter object with the specified name from the collection. (Overrides DbParameterCollection::RemoveAt(String).) |
![]() | SetParameter(Int32, DbParameter) | Sets the DbParameter object at the specified index to a new value. (Inherited from DbParameterCollection.) |
![]() | SetParameter(String, DbParameter) | Sets the DbParameter object with the specified name to a new value. (Inherited from DbParameterCollection.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IDataParameterCollection::Item | Gets or sets the parameter at the specified index. (Inherited from DbParameterCollection.) |
![]() ![]() | IList::Item | Gets or sets the element at the specified index. (Inherited from DbParameterCollection.) |
When using named parameters, the number of parameters in the collection must be equal to the number of named parameters within the command text, or the .NET Framework Data Provider for Oracle raises an error.
The .NET Framework Data Provider for Oracle does not support the question mark (?) placeholder for passing parameters to an SQL statement called by an OracleCommand of CommandType.Text. In this case, named parameters must be used. For example:
SELECT * FROM Customers WHERE CustomerID = :pCustomerID
When using named parameters in an SQL statement called by an OracleCommand of CommandType.Text, you must precede the parameter name with a colon (:). However, in a stored procedure, or when referring to a named parameter elsewhere in your code (for example, when adding OracleParameter objects to the Parameters property), do not precede the named parameter with a colon (:). The data provider supplies the colon automatically.
The following example creates multiple instances of OracleParameter through the OracleParameterCollection within the OracleDataAdapter. These parameters are used to select data within the database and then place the data in the DataSet. This example assumes that a DataSet and an OracleDataAdapter have already been created with the appropriate schema, commands, and connection.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

