[cfaussie] Melbourne Adobe Developers next meeting, 21st July 2011, presentation details

2011-07-17 Thread Peter Robertson
Here are the full details for this Thursday's presentation. *** Remember, please RSVP if you're attending so that we can arrange catering. *** Presentation 1: Ayudh Nagara Topic: Web Widgets * What, Why, How? * The widget business model * Basic framework and tools * Getting around the AJAX "same

[cfaussie] import dynamic location

2011-07-17 Thread Steve Onnis
Can you use import with variable names? import "#foo#.bar"; ? Steve -- You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com. To unsubscribe from this group, send email to cfaussie+unsu

Re: [cfaussie] import dynamic location

2011-07-17 Thread Paul Kukiel
No you must specify a real location for this and not a variable. Paul. On Mon, Jul 18, 2011 at 3:51 PM, Steve Onnis wrote: > Can you use import with variable names? > > ** ** > > import “#foo#.bar”; > > ** ** > > ? > > Steve > > -- > You received this message because you are sub

[cfaussie] implicit getters and setters

2011-07-17 Thread Steve Onnis
Do these get created automatically for all CFCs now or is it only for the ORM side of things? Steve -- You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com. To unsubscribe from this group, s

Re: [cfaussie] import dynamic location

2011-07-17 Thread Barry Beattie
IIRC, because the IMPORT target is calculated at compile time, not runtime. yes? (lets see if I've still got brain cells left). On Mon, Jul 18, 2011 at 4:01 PM, Paul Kukiel wrote: > No you must specify a real location for this and not a variable. > > Paul. > > On Mon, Jul 18, 2011 at 3:51 PM, St

RE: [cfaussie] import dynamic location

2011-07-17 Thread Steve Onnis
Is import the same as CFIMPORT? -Original Message- From: Barry Beattie [mailto:barry.beat...@gmail.com] Sent: Monday, 18 July 2011 4:07 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] import dynamic location IIRC, because the IMPORT target is calculated at compile time, not runt

Re: [cfaussie] implicit getters and setters

2011-07-17 Thread Paul Kukiel
if you set accessors="true" on the component definition they are created for you. You don't need ORM. Paul. On Mon, Jul 18, 2011 at 4:04 PM, Steve Onnis wrote: > Do these get created automatically for all CFCs now or is it only for the > ORM side of things? > > ** ** > > Steve > > -- >

Re: [cfaussie] import dynamic location

2011-07-17 Thread Paul Kukiel
Yep On Mon, Jul 18, 2011 at 4:06 PM, Barry Beattie wrote: > IIRC, because the IMPORT target is calculated at compile time, not runtime. > > yes? (lets see if I've still got brain cells left). > > On Mon, Jul 18, 2011 at 4:01 PM, Paul Kukiel wrote: > > No you must specify a real location for this

RE: [cfaussie] implicit getters and setters

2011-07-17 Thread Steve Onnis
Nice. Thanks J From: Paul Kukiel [mailto:kuki...@gmail.com] Sent: Monday, 18 July 2011 4:17 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] implicit getters and setters if you set accessors="true" on the component definition they are created for you. You don't need ORM. Paul. O

[cfaussie] Query of Query question

2011-07-17 Thread Steve Onnis
Can you not do a QofQ on a LOCAL variable? I tried to do this SELECT * FROM LOCAL.d And i get Query Of Queries syntax error. Encountered "LOCAL. As an error. Am i right in guessing it might have something to do with the engine thinking it is a db schema

Re: [cfaussie] Query of Query question

2011-07-17 Thread Paul Kukiel
You can but you need to escape local ie select * from [local].d Paul. On Mon, Jul 18, 2011 at 4:38 PM, Steve Onnis wrote: > Can you not do a QofQ on a LOCAL variable? > > ** ** > > I tried to do this > > ** ** > > > > *SELECT* * > > *FROM* LOCAL.d

RE: [cfaussie] Query of Query question

2011-07-17 Thread Steve Onnis
Is LOCAL a reserved word or something? From: Paul Kukiel [mailto:kuki...@gmail.com] Sent: Monday, 18 July 2011 4:42 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] Query of Query question You can but you need to escape local ie select * from [local].d Paul. On Mon, Jul 18

Re: [cfaussie] Query of Query question

2011-07-17 Thread Paul Kukiel
Yep. Pretty much any reserved word that you encounter errors on in CF and SQSL can be escaped by using [ ] It's not well documented and given CF9's local scope I'm sure more people will run into this issue. Easy work around though. Paul On Mon, Jul 18, 2011 at 4:45 PM, Steve Onnis wrote: > I