OracleString Constructors

The OracleString constructors create new instances of the OracleString structure.

Overload List:

  • OracleString(string)

    This constructor creates a new instance of the OracleString structure and sets its value using a string.

  • OracleString(string, bool)

    This constructor creates a new instance of the OracleString structure and sets its value using a string and specifies if case is ignored in comparison.

  • OracleString(byte [ ], bool)

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

  • 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.

  • OracleString(byte [ ], int, int, bool)

    This constructor creates a new instance of the OracleString structure and sets its value using a byte array, and specifies the following: the starting index in the byte array, the number of bytes to copy from the byte array, and if the supplied byte array is Unicode encoded.

  • OracleString(byte [ ], int, int, bool, bool)

    This constructor creates a new instance of the OracleString structure and sets its value using a byte array, and specifies the following: the starting index in the byte array, the number of bytes to copy from the byte array, if the supplied byte array is Unicode encoded, and if case is ignored in comparison.