Re: [flexcoders] In Flex and Coldfusion Crud in 100 lines, the CFC syntax doesn't work on MX702

2009-04-08 Thread David Kramer
s.com Subject: Re: [flexcoders] In Flex and Coldfusion Crud in 100 lines, the CFC syntax doesn't work on MX702 Date: Wed, 8 Apr 2009 17:11:40 -0400 In my example I have: then ... wrote: Hey guys, I followed this seemingly great article, and I'v

Re: [flexcoders] In Flex and Coldfusion Crud in 100 lines, the CFC syntax doesn't work on MX702

2009-04-08 Thread Jeffry Houser
Change the line to this, and it'll probably work Or this I've never seen the {} syntax before, but I assume it is shorthand for creating a structure. You could comment out line 3 completely, but then your 'local.q' variable would be created as an instance variable on the component,

Re: [flexcoders] In Flex and Coldfusion Crud in 100 lines, the CFC syntax doesn't work on MX702

2009-04-08 Thread Brad Bueche
In my example I have: then ...wrote: > > > Hey guys, > > I followed this seemingly great article, and I've found that in the > Crud.cfc portion of the example (here specifically)... > > 1: > 2: > 3: > > select id, name, type > from test > > > > > ...the 3rd line cfset var local = {} t

[flexcoders] In Flex and Coldfusion Crud in 100 lines, the CFC syntax doesn't work on MX702

2009-04-08 Thread dmkramerica
Hey guys, I followed this seemingly great article, and I've found that in the Crud.cfc portion of the example (here specifically)... 1: 2: 3: select id, name, type fromtest