Convert byte array from Oracle RAW to System.Guid? Convert byte array from Oracle RAW to System.Guid? oracle oracle

Convert byte array from Oracle RAW to System.Guid?


It turns out that the issue was the byte order you get in Guid.ToByteArray() and not Oracle itself. If you take the Guid "11223344-5566-7788-9900-aabbccddeeff" and call ToByteArray() on it, you get "44332211665588779900AABBCCDDEEFF". If you then pass that byte array back into the constructor for Guid, you get the original Guid. My mistake was trying to query the Oracle database by the original Guid format (with the dashes removed) instead of the result of the ToByteArray() call.

I still have no idea why the bytes are ordered that way, but it apparently has nothing to do with Oracle.


I just had this same issue when storing and reading Guids from Oracle.

If your app needs to store and read Guids from Oracle, use the FlipEndian function from this thread:

.NET Native GUID conversion

Byte[] rawBytesFromOracle;Guid dotNetGuid = new Guid(rawBytesFromOracle).FlipEndian();

The flip is only required when reading back from Oracle.

When writing to Oracle use Guid.ToByteArray() as normal.

I spent TOO much time trying to get this simple task accomplished.

Steve


I have vague recollections that the GUIDs from Oracle are effectively reversed compared with the order .NET expects.

Try reversing the array before calling the Guid constructor.

It may not be quite as simple as reversing, however - you may need to do more detailed swapping. I suggest you create a GUID where each byte is easy to identify (use 0x01, 0x23, 0x45 etc) and work from there.