We have seen the following change in behavior in cfmx updater 3:
<cfquery name ="q" datasource = #dsn#">
   select id from  table
</cfquery>
the id is integer 1;2; 3

<cfoutput>#valueList (q.id)#</cfoutput> will return 1,2,3 in cfmx updater 2
and 3
if the query is converted to a wddx package and converted back to a query:
<cfwddx action="cfml2wddx" input="#q#" output="session.wddxQuery">

<cfwddx action="wddx2cfml" input="#session.wddxQuery#" output="q">

now:

<cfoutput>#valueList (q.id)#</cfoutput> will return
1.0,2.0,3.0 in updater 3 and it causing a lot of problems.

Can anybody (MM) confirm this behavior

Thanks

Marius Milosav
www.scorpiosoft.com
It's not about technology, it's about people.
Virtual Company (VICO) Application Demo
www.scorpiosoft.com/vicodemo/login.cfm

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

                                Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
                                

Reply via email to