company logo

StringCodingTypes - String coding types

String coding types describes different coding formats that might be used, when exchanging text data in odaba::String objects. String coding types are also used for recoding string values.

Enumarators overview

Enumerator details

  1. ASCIIString - ASCII String Coding

    An odaba::String of this coding type contains only ASCII code point values.

    Code: 1
    to list
  2. Latin1String - Latin1 String Coding

    An odaba::String of this coding type contains only Latin1 code point values.

    Code: 2
    to list
  3. Local8BitString - Local 8 bit String Coding

    An odaba::String of this coding type contains code point values of the current local 8 bit code page.

    This coding type is the default for C++ and OSI interface.

    Code: 3
    to list
  4. UTF16String - UTF16 String Coding

    An odaba::String of this coding type contains 16 bit unicode code point values.

    This coding type is the default for .NET interface.

    Code: 10
    to list
  5. UTF32String - UTF32 String Coding

    An odaba::String of this coding type contains 32 bit unicode code point values.

    Code: 11
    to list
  6. UTF8String - UTF8 String Coding

    An odaba::String of this coding type contains 8 bit unicodecode point values.

    Code: 12
    to list