What data types in Oracle correspond to the WORD and DWORD types?

    1 answer 1

    The second answer in Google:

    DWORD - 32-bit unsigned integer.

    long or int.

    WORD - 16-bit unsigned integer.

    int or short.

    CHAR - 8-bit Windows (ANSI) character.

    byte.

    Thread: Data types .