Windows apps
Collapse the table of content
Expand the table of content
Information
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.

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)

public:
OracleParameter(
	String^ name,
	Object^ value
)

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.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft