[cfaussie] Re: Parallels or Bootcamp?

2007-10-11 Thread Sean Bucklar
VMware would probably be my chosen option if I HAD to run virtual machines from my laptop. But I'd much rather just leave a windows machine with a network connection running in the back closet and connect with Terminal Server if I had the option. With a half decent broadband connection - I'd

[cfaussie] Adobe Refresh 2007, learn about the recent happenings at MAX

2007-10-11 Thread spaulds
Hi guys, I just wanted to alert you to Adobe Refresh 2007 in Sydney and Melbourne at the end of the month. We're delivering an afternoon seminar covering the recent happenings at MAX 2007 in Chicago. More information can be found in my blog post

[cfaussie] spaces in column names

2007-10-11 Thread Stephen M
I'm trying to process a result set from a stored proc that contains spaces in the column names. Now, I've asked the db programmer to replace the spaces with underscores, just to make it easier for me, but exactly how do you reference the values of a column with spaces in the name? Bearing in

[cfaussie] CFHTTP Connection Failure

2007-10-11 Thread Taco Fleur
Hello all, I'm trying to download and save an image to disk with cfhttp, but its returning Connection Failure, however, not all the time, and when I access the url via the browser the image is there. When I look at the response with LIVEHEADERS (in firefox) I aslo don't see the same result as I

[cfaussie] Re: spaces in column names

2007-10-11 Thread Stephen M
The spaces were replaced with underscores, then CF spat the dummy at MALE_35+ Didn't seem to like a plus sign as part of the column name either. Now, I know that I can get the columnList, but can I set it? On Oct 12, 3:30 pm, Stephen M [EMAIL PROTECTED] wrote: I'm trying to process a result

[cfaussie] Re: spaces in column names

2007-10-11 Thread Barry Beattie
perhaps just alias them? [column one] as col1 On 10/12/07, Stephen M [EMAIL PROTECTED] wrote: I'm trying to process a result set from a stored proc that contains spaces in the column names. Now, I've asked the db programmer to replace the spaces with underscores, just to make it easier

[cfaussie] Re: spaces in column names

2007-10-11 Thread Dale Fraser
Use AS to fix this Select silly_name+ as notSoSilly Regards Dale Fraser http://learncf.com -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephen M Sent: Friday, 12 October 2007 3:31 PM To: cfaussie Subject: [cfaussie] spaces in column

[cfaussie] Re: spaces in column names

2007-10-11 Thread Stephen M
I'm can't change the stored proc, but I suppose I could try a query of a query and use an alias. On Oct 12, 3:38 pm, Barry Beattie [EMAIL PROTECTED] wrote: perhaps just alias them? [column one] as col1 On 10/12/07, Stephen M [EMAIL PROTECTED] wrote: I'm trying to process a result set

[cfaussie] Re: spaces in column names

2007-10-11 Thread Scott Thornton
you can use: queryname['stupidfieldname?'][queryname.CurrentRow] notice the question mark in the name. similar to the plus sign in the field name example you had Stephen M [EMAIL PROTECTED] 12/10/2007 3:30 pm I'm trying to process a result set from a stored proc that contains