[flexcoders] Flex 2: Oracle - type long ??

2005-10-27 Thread Greg Johnson
I am stuck with using Oracle for a datasource with a project. One field that is returned back is of type long in oracle. When I try to return it as part of my results, Flex throws a fit. I comment that one thing out, and it's fine. I tried using ToString in the CFC but that didn't work.

Re: [flexcoders] Flex 2: Oracle - type long ??

2005-10-27 Thread Spike
Have you tried toBase64() or urlEncodedFormat() in the CFC? If one of those works, you might be able to decode it safely once it gets into Flash. I had a similar problem with some data I am working with that contains low ASCII control characters. I managed to fix that by wrapping the result in

Re: [flexcoders] Flex 2: Oracle - type long ??

2005-10-27 Thread Douglas Knudsen
If you really don'tneed to do any math ops on it, try to_char() on the oracle end. DK On 10/27/05, Spike [EMAIL PROTECTED] wrote: Have you tried toBase64() or urlEncodedFormat() in the CFC?If one of those works, you might be able to decode it safely once it gets into Flash. I had a similar