Re: cfselect am I missing something.

2007-08-11 Thread Raymond Camden
Hmm, it was my understanding you returned a query for selects. According to the docs - I'm half right. You can return a query, or a 2D array. It does not say you can return an AoS. On 8/11/07, Jeremy Rottman <[EMAIL PROTECTED]> wrote: > >What do you see in Firebug? I cannot stress enough (and this

Re: cfselect am I missing something.

2007-08-11 Thread Jeremy Rottman
>What do you see in Firebug? I cannot stress enough (and this it to >_everyone_ who is playing with Ajax for the first time) the CRITICAL >important of Firebug. it lets you see the Ajax requests and what they >are returning. > >Now if I had to guess - I'd bet that this.dsn doesn't equal anything >a

Re: cfselect am I missing something.

2007-08-11 Thread Raymond Camden
What do you see in Firebug? I cannot stress enough (and this it to _everyone_ who is playing with Ajax for the first time) the CRITICAL important of Firebug. it lets you see the Ajax requests and what they are returning. Now if I had to guess - I'd bet that this.dsn doesn't equal anything as I did

cfselect am I missing something.

2007-08-11 Thread Jeremy Rottman
I am playing around with my new coldfusion 8 install. I am trying to use Ben Forta's example to bind data from two of my cfc's. But for some reason, my tests don't work at all. It does not populate any of the inputs and gives no errors Here is the code I am using test.cfm Select Media Typ

Re: Am I missing something?

2007-05-02 Thread Chris Ditty
Thanks Dave. I swore that I had it set to exception, but it is apparent that I didn't. I changed it to exception and it wrote to the log file as expected. Many thanks. On 5/2/07, Dave Watts <[EMAIL PROTECTED]> wrote: > > I am trying to write a simple error page that will get called on any > > C

RE: Am I missing something?

2007-05-02 Thread Dave Watts
> I am trying to write a simple error page that will get called on any > CF errors. When an error occurs, I want to write the error > information to a log file using cflog. Currently, I am > testing this by killing my database and loading pages. I get > the error page I created, but I the log

RE: Am I missing something?

2007-05-02 Thread Gaulin, Mark
Ditty [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 02, 2007 9:31 AM To: CF-Talk Subject: Am I missing something? I am trying to write a simple error page that will get called on any CF errors. When an error occurs, I want to write the error information to a log file using cflog. Currently,

Am I missing something?

2007-05-02 Thread Chris Ditty
I am trying to write a simple error page that will get called on any CF errors. When an error occurs, I want to write the error information to a log file using cflog. Currently, I am testing this by killing my database and loading pages. I get the error page I created, but I the logging doesn't

RE: am i missing something?

2001-02-16 Thread Todd Stanley
]] Sent: Friday, February 16, 2001 2:53 PM To: CF-Talk Subject: am i missing something? Hello everyone, I'm looking for help on this page. i have the following query's runing. i have comments above each to help out and below i explain more. SELECT Gender, ContestantID FROM Contestant

Re: NEVERMIND am i missing something?

2001-02-16 Thread Jay Patton
CTED]> Sent: Friday, February 16, 2001 12:53 PM Subject: am i missing something? > Hello everyone, > > I'm looking for help on this page. > i have the following query's runing. i have comments above each to help out and below i explain more. > > > >

RE: am i missing something?

2001-02-16 Thread Philip Arnold - ASP
> datasource="#datasource#" > dbtype="ODBC"> > SELECT Gender, ContestantID > FROM ContestantManager > WHERE Gender = '2' > > > datasource="#datasource#" > dbtype="ODBC"> > SELECT #GetWomen.ContestantID#, SUM (AdjPoints) as TOTALPTS, SUM > (MoneyEarned) as TOT

RE: am i missing something?

2001-02-16 Thread ccombs
I think the second query needs a where clause for contestantID ... -Original Message- From: Jay Patton [mailto:[EMAIL PROTECTED]] Sent: Friday, February 16, 2001 2:53 PM To: CF-Talk Subject: am i missing something? Hello everyone, I'm looking for help on this page. i hav

am i missing something?

2001-02-16 Thread Jay Patton
Hello everyone, I'm looking for help on this page. i have the following query's runing. i have comments above each to help out and below i explain more. SELECT Gender, ContestantID FROM ContestantManager WHERE Gender = '2' SELECT #GetWomen.ContestantID#, SUM (AdjPoints) as TOTALPTS, SUM

RE: Studio: am I missing something

2000-11-28 Thread Patricia Lee
You have to make a project. That's the only way to do searches over rds... > -Original Message- > From: j p [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, November 28, 2000 1:05 PM > To: CF-Talk > Subject: Studio: am I missing something > > > doing a find a

Studio: am I missing something

2000-11-28 Thread j p
doing a find and replace on a remote server (remote RDS or FTP) is it possible? _ Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com ~~ Str

RE: Am I Missing Something?

2000-05-22 Thread Reagan, Leman
=-=-=-=-=-=- application.cfm in the 'main' directory: =-=-=-=-=-= =-=-=-=-=- -Original Message- From: Kelly Matthews [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 13, 2000 6:27 PM To: '

RE: Am I missing something? Calculations...

2000-05-17 Thread Kelly Matthews
> -Original Message- > From: Josh Black [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, May 16, 2000 5:11 PM > To: [EMAIL PROTECTED] > Subject: Re: Am I missing something? Calculations... > > Why is it bad to use Evaluate() for math calculations? Is it just

RE: Am I missing something? Calculations...

2000-05-17 Thread Kelly Matthews
actually evaluate is the way I went :) actually i did the evaluate within CFSETS and it worked just beautifully. > -Original Message- > From: Josh Black [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, May 16, 2000 5:11 PM > To: [EMAIL PROTECTED] > Subject: Re: Am I mi

RE: Am I missing something? Calculations...

2000-05-16 Thread Mary Jo Sminkey
> >> Then I want to do the same thing but take airport1.fielda and > >> airport2.fielda and to the > >> AVERAGE of the 2. Meaning airport1.fielda * airport2.fielda / 2. Wouldn't the average be the two values ADDED not multiplied? But yes, Evaluate should work fine for this. --

RE: Am I missing something? Calculations...

2000-05-16 Thread Larry Juncker
] Sent: Tuesday, May 16, 2000 4:03 PM To: [EMAIL PROTECTED] Subject: RE: Am I missing something? Calculations... Um, no, don't use evaluate... Look at the CF math functions (Functions, not Tags!) A / B = #C# HTH Dick At 2:23 PM -0400 5/16/2000, Kelly Matthew

Re: Am I missing something? Calculations...

2000-05-16 Thread Josh Black
day, May 16, 2000 2:03 PM Subject: RE: Am I missing something? Calculations... > Um, no, don't use evaluate... > > Look at the CF math functions (Functions, not Tags!) > > > > > > >A / B = #C# > > > HTH > > Dick >

RE: Am I missing something? Calculations...

2000-05-16 Thread Dick Applebaum
gt;> From: Kelly Matthews [SMTP:[EMAIL PROTECTED]] >> Sent: Tuesday, May 16, 2000 2:11 PM >> To: '[EMAIL PROTECTED]' >> Subject:Am I missing something? Calculations... >> >> Ok I must be missing something I have not had to do this bef

RE: Am I missing something? Calculations...

2000-05-16 Thread Kelly Matthews
Ok i figured it out, use the evaluate tag... Kelly > -Original Message- > From: Kelly Matthews [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, May 16, 2000 2:11 PM > To: '[EMAIL PROTECTED]' > Subject: Am I missing something? Calculations... > > Ok I must

Am I missing something? Calculations...

2000-05-16 Thread Kelly Matthews
Ok I must be missing something I have not had to do this before so never really had to worry about it. I want to output a report that does a couple things 1 is it takes 2 fields (field a and field b) and divides them. I know how to do it in the SQL statement but I dont want to I would rather do i

Re: Am I Missing Something?

2000-04-17 Thread Manish
lt;[EMAIL PROTECTED]> Date: Sunday, April 16, 2000 12:26 AM Subject: Re: Am I Missing Something? >Aren't there some security issues involved in passing the CFID & CFTOKEN in >the URL? It's been awhile now, but I recall one of my co-workers playing >with bookmarking pages, et

Re: Am I Missing Something?

2000-04-15 Thread Eric Dawson
<[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: Re: Am I Missing Something? Date: Sat, 15 Apr 2000 11:39:13 -0500 Aren't there some security issues involved in passing the CFID & CFTOKEN in the URL? It's been awhile now, but I recall one o

Re: Am I Missing Something?

2000-04-15 Thread Fred Sanders
y. The water is clear. You can easily make out the face of the person you are holding underwater. Feeling better? - Original Message - From: "Allen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, April 15, 2000 11:39 AM Subject: Re: Am I Missing Something?

Re: Am I Missing Something?

2000-04-15 Thread Allen
is one, though. -Allen - Original Message - From: Byron M <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 13, 2000 11:55 PM Subject: RE: Am I Missing Something? > Basically that is correct, you could do it with vars stored in a db, but you > would still have t

RE: Am I Missing Something?

2000-04-14 Thread Kelly Matthews
ok thanks for the tip > -Original Message- > From: Byron M [SMTP:[EMAIL PROTECTED]] > Sent: Friday, April 14, 2000 12:55 AM > To: [EMAIL PROTECTED] > Subject: RE: Am I Missing Something? > > Basically that is correct, you could do it with vars stored in a

RE: Am I Missing Something?

2000-04-13 Thread Byron M
, 2000 11:38 PM To: [EMAIL PROTECTED] Subject: Re: Am I Missing Something? as far as I know the only way to pass a session from page to page is either through a cookie or a url variable. If cookies are turned off you need to manually code the CFID and CFTOKEN variables to the URL to ensure you

Re: Am I Missing Something?

2000-04-13 Thread Eric Dawson
: Kelly Matthews <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: "'[EMAIL PROTECTED] '" <[EMAIL PROTECTED]> Subject: Am I Missing Something? Date: Thu, 13 Apr 2000 21:26:31 -0400 Ok I am somewhat new to CF but something doesn't seem to be right. I have a se

Am I Missing Something?

2000-04-13 Thread Kelly Matthews
Ok I am somewhat new to CF but something doesn't seem to be right. I have a section of our site that is secure, for members only. I have written the app to write a cookie so they don't have to login in the future. That part works fine. Now I just wanted to see what happened if someone had cookie