14.7.2.4 OracleString(byte [ ], bool, bool)

This constructor creates a new instance of the OracleString structure and sets its value using a byte array and specifies the following: if the supplied byte array is Unicode encoded and if case is ignored in comparison.

Declaration

// C#
public OracleString(byte[] data, bool fUnicode, bool isCaseIgnored);

Parameters

  • data

    Byte array data for the new OracleString.

  • fUnicode

    Specifies if the supplied data is Unicode encoded. Specifies true if Unicode encoded; otherwise, false.

  • isCaseIgnored

    Specifies if case is ignored in comparison. Specifies true if case is to be ignored; otherwise, specifies false.

Exceptions