OracleDecimal Constructors

The OracleDecimal constructors instantiate a new instance of the OracleDecimal structure.

Overload List:

  • OracleDecimal(byte [ ])

    This constructor creates a new instance of the OracleDecimal structure and sets its value to the supplied byte array, which is in an Oracle NUMBER format.

  • OracleDecimal(decimal)

    This constructor creates a new instance of the OracleDecimal structure and sets its value to the supplied Decimal value.

  • OracleDecimal(double)

    This constructor creates a new instance of the OracleDecimal structure and sets its value to the supplied double value.

  • OracleDecimal(int)

    This constructor creates a new instance of the OracleDecimal structure and sets its value to the supplied Int32 value.

  • OracleDecimal(float)

    This constructor creates a new instance of the OracleDecimal structure and sets its value to the supplied Single value.

  • OracleDecimal(long)

    This constructor creates a new instance of the OracleDecimal structure and sets its value to the supplied Int64 value.

  • OracleDecimal(string)

    This constructor creates a new instance of the OracleDecimal structure and sets its value to the supplied string value.

  • OracleDecimal(string, string)

    This constructor creates a new instance of the OracleDecimal structure with the supplied string value and number format.