OracleParameter Constructor (String, Object)
Initializes a new instance of the OracleParameter class that uses the parameter name and an OracleParameter object.
Namespace: System.Data.OracleClient
Assembly: System.Data.OracleClient (in System.Data.OracleClient.dll)
Parameters
- name
- Type: System.String
The name of the parameter.
- value
- Type: System.Object
An OracleParameter object.
When you specify an Object in the value parameter, the DbType is inferred from the Microsoft .NET Framework type of the Object.
Use caution when you are using this overload of the OracleParameter constructor. Because this overload takes a value of type Object, you must convert the integral value to an Object type when the value is zero, as the following Microsoft Visual C# example demonstrates.
Parameter = new OracleParameter("pname", Convert.ToInt32(0));
If you do not perform this conversion, the compiler will assume that you are trying to call the OracleParameter(string, OracleType) constructor overload.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.