Ditto on 6.1 on XP/Apache

Works without change on 5.0 on same setup.

Terry

----- Original Message -----

> Here is one bug in QoQ which gets right on my raspberry ripples.... if 
> you
> run the code below you will see that after you perform the QoQ on the
> original queryobject that it has actually modified the ORIGINAL object 
> which
> is simply insane....
> 
> Uurgh...QoQ...pain in the a-hole
> 
> 
> <cfset myQuery = QueryNew("name, address, phone")>
> <!--- make some rows in the query --->
> <cfset newRow  = QueryAddRow(MyQuery, 2)>
> <!--- set the cells in the query --->
> <cfset temp = QuerySetCell(myQuery, "name", "Fred", 1)>
> <cfset temp = QuerySetCell(myQuery, "address", "9 Any Lane", 1)>
> <cfset temp = QuerySetCell(myQuery, "phone", "005551212", 1)>
> <cfset temp = QuerySetCell(myQuery, "name", "Jane", 2)>
> <cfset temp = QuerySetCell(myQuery, "address", "14 My Street", 2)>
> <cfset temp = QuerySetCell(myQuery, "phone", "005551444", 2)>
> <!--- output the query --->
> 
> 
> Before: <cfdump var="#myQuery#">
> 
> <cfquery name="myQueryMod"  dbtype="query">
>       SELECT * FROM myQuery
> </cfquery> 
> 
> After: <cfdump var="#myQuery#">



-- 
These lists are syncronised with the CFDeveloper forum at 
http://forum.cfdeveloper.co.uk/
Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
 
CFDeveloper Sponsors and contributors:-
*Hosting and support provided by CFMXhosting.co.uk* :: *ActivePDF provided by 
activepdf.com*
      *Forums provided by fusetalk.com* :: *ProWorkFlow provided by proworkflow.com*
           *Tutorials provided by helmguru.com* :: *Lists hosted by gradwell.com*

To unsubscribe, e-mail: [EMAIL PROTECTED]

Reply via email to