On Thu, Jun 30, 2011 at 8:28 PM, Andrew Scott <andr...@andyscott.id.au> wrote:
> Yes but the code should be written
>
> <cfset myQuery = queryNew("column1")>
> <cfset queryAddRow("myQuery")>
> <cfset querySetCell("myQuery","column1","blah blah blah")>

Shouldn't that be:

<cfset myQuery = queryNew("column1")>
<cfset queryAddRow(myQuery)>
<cfset querySetCell(myQuery,"column1","blah blah blah")>

query*() functions take a query variable, not a string.
-- 
Sean A Corfield -- (904) 302-SEAN
An Architect's View -- http://corfield.org/
World Singles, LLC. -- http://worldsingles.com/
Railo Technologies, Inc. -- http://www.getrailo.com/

"Perfection is the enemy of the good."
-- Gustave Flaubert, French realist novelist (1821-1880)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346040
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to