Hello all, I am seeing an interesting result trying to use as a sys_guid() value in Coldfusion 7.
If I do
<cfquery>select sys_guid() as guid from dual</cfquery>
The return guid value is seen as a binary field by Coldfusion.
However, if I do
<cfquery>select sys_guid() || '' as guid from dual</cfquery>
The return guid value is seen as a string.
I have tried a couple different Oracle and Coldfusion/Macromedia drivers, and they all respond the same. The latter statement is what I have been using, so I can process the guids later on in code, and works fine. I am hoping someone can explain why I am getting these results.