OracleNumber Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the OracleNumber structure.
Overloads
OracleNumber(OracleNumber) |
Initializes a new instance of the OracleNumber structure using the supplied OracleNumber. |
OracleNumber(Decimal) |
Initializes a new instance of the OracleNumber structure using the supplied Decimal value. |
OracleNumber(Double) |
Initializes a new instance of the OracleNumber using the supplied double precision value. |
OracleNumber(Int32) |
Initializes a new instance of the OracleNumber structure using the supplied integer value. |
OracleNumber(Int64) |
Initializes a new instance of the OracleNumber structure using the supplied long integer value. |
OracleNumber(OracleNumber)
Initializes a new instance of the OracleNumber structure using the supplied OracleNumber.
public:
OracleNumber(System::Data::OracleClient::OracleNumber from);
public OracleNumber (System.Data.OracleClient.OracleNumber from);
new System.Data.OracleClient.OracleNumber : System.Data.OracleClient.OracleNumber -> System.Data.OracleClient.OracleNumber
Public Sub New (from As OracleNumber)
Parameters
- from
- OracleNumber
The supplied OracleNumber that will be used as the value of the new OracleNumber structure.
Applies to
OracleNumber(Decimal)
Initializes a new instance of the OracleNumber structure using the supplied Decimal value.
public:
OracleNumber(System::Decimal decValue);
public OracleNumber (decimal decValue);
new System.Data.OracleClient.OracleNumber : decimal -> System.Data.OracleClient.OracleNumber
Public Sub New (decValue As Decimal)
Parameters
- decValue
- Decimal
The Decimal value to be stored as an OracleNumber structure.
Applies to
OracleNumber(Double)
Initializes a new instance of the OracleNumber using the supplied double precision value.
public:
OracleNumber(double dblValue);
public OracleNumber (double dblValue);
new System.Data.OracleClient.OracleNumber : double -> System.Data.OracleClient.OracleNumber
Public Sub New (dblValue As Double)
Parameters
- dblValue
- Double
The supplied double precision value that will the used as the value of the new OracleNumber structure.
Applies to
OracleNumber(Int32)
Initializes a new instance of the OracleNumber structure using the supplied integer value.
public:
OracleNumber(int intValue);
public OracleNumber (int intValue);
new System.Data.OracleClient.OracleNumber : int -> System.Data.OracleClient.OracleNumber
Public Sub New (intValue As Integer)
Parameters
- intValue
- Int32
The supplied integer value that will be used as the value of the new OracleNumber structure.
Applies to
OracleNumber(Int64)
Initializes a new instance of the OracleNumber structure using the supplied long integer value.
public:
OracleNumber(long longValue);
public OracleNumber (long longValue);
new System.Data.OracleClient.OracleNumber : int64 -> System.Data.OracleClient.OracleNumber
Public Sub New (longValue As Long)
Parameters
- longValue
- Int64
The supplied long integer value that will be used as the value of the new OracleNumber structure.