Search the web
Sign In
New User? Sign Up
CFTalk · ColdFusion Talk (CFTalk) List archives
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 139549 - 139578 of 154347   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
139549
Add to that list, locally scope the query. <cfset var get = ""> Adrian ... From: Peter Boughton [mailto:boughtonp@...] Sent: 01 October 2008 00:01 To:...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
8:06 am
139550
... Very good point - probably the most critical change to make. I can't believe I missed that. :'( ...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
9:53 am
139551
Thanks for the suggestions. I drastically shorten the code/query to get my question across. However, you make very good points! Thanks! Mike ... From: Peter...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
11:43 am
139552
My bad, again :[ , it's the Temp method, the one without any parameters. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe®...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
12:36 pm
139553
CF5.0 Problem for all you old guys out there (actually, a problem for me, an OPPORTUNITY for you): I have a few scheduled tasks that run fine, but I want to...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
1:12 pm
139554
... How is this an opportunity? Should I invoice you for the answer? ... Assuming your web server is listening on TCP/80, you can just go ahead and put in 80. ...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
1:21 pm
139555
... JSP and Faces are both part of the Java spec so its java (JSF 2.0 I suppose). Tapestry is a framework and does not really do code generation as compared to...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
2:08 pm
139556
... OK, that accepts an empty document/literal value. I suspect you might have to pass in an empty argument. Dave Watts, CTO, Fig Leaf Software ...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
2:34 pm
139557
... I'm not sure what you mean by this. Scheduled tasks by default run as SYSTEM. They're never going to be run "directly from CF" because CF isn't the...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
2:39 pm
139558
Hey all, Is there a way to force a CF Server to clear it's query cache? thanks sas -- Scott Stewart ColdFusion Developer Office of Research Information Systems...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:08 pm
139559
... If they're cached with CACHEDWITHIN/CACHEDAFTER, use <CFOBJECTCACHE ACTION="CLEAR">. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:14 pm
139560
Has anyone been able to use the css property "page-break-inside:avoid" with in a CFDOCUMENT tag. I am using CF8 and I am dynamically generating a PDF report...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:17 pm
139561
unfortunately their not, it's the server's query cache that has them, is it possible to force them to not cache in the first place (without setting the query...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:21 pm
139562
Thanks for the replies, I didn't figure I would be able to do this at this time. Maybe a future release of CF will inlucde this type of feature. ...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:22 pm
139563
... Are you saying they're cached within the Server scope, and you reference them as Server.yourqueryname? If so, you can manage them just like you would any...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:26 pm
139564
He might also mean the execution plan. Adrian ... From: Dave Watts [mailto:dwatts@...] Sent: 01 October 2008 16:24 To: cf-talk Subject: Re: Clearing...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:35 pm
139565
It's a plain ol' vanilla query <cfquery name="get_study" datasource="#request.dsn#"> select cycle_id, cycle.cycle_month, cycle.cycle_year, week_id, ...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:40 pm
139566
... Maybe, but CF doesn't cache the execution plan. The database does that. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:40 pm
139567
What is the best way of coding this: I have a form that currently has 4 check boxes. When processing this form I need to check for the existence of any of the ...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:41 pm
139568
When you add a new checkbox, add logic for checking it? ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:44 pm
139569
Is URL.id correct? Are you sure your hitting the right DB? Without you asking CF to cache anything it won't. ... From: Scott Stewart...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:45 pm
139570
... Are you sure you're passing the same value for URL.id in both places? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:45 pm
139571
Kind of hard to check for a form value if you are unsure the name of the element. Pure Curosity: Why would you not know the name of the field? Is it pulled ...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:50 pm
139572
You have to have some knowledge of the checkbox names. Are they in any way similar? <input type="checkbox" name="checkbox_1" /> <input type="checkbox"...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:54 pm
139573
If the names are from the DB you can either get them again on the action page or pass them to the action page from the form. Then in a query or list loop: ...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:58 pm
139574
Whoops. Sorry I mistyped. I *DO* (thank you for no starbucks this AM) know the name of the check boxes and they are generated from a DB. So yes, I will have...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
3:59 pm
139575
Anyone, soomeone, help please ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
4:16 pm
139576
thanks for your help, and thanks for rays link on ajax security we will have to read around this some more. thanks again richard ... ...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
4:25 pm
139577
It sounds like you are going to need to look at your join syntax. Since you are join your users to courses you are going to get 9 records for that one user....
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
4:26 pm
139578
I'll have to check on that but... it should be... ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8...
archive@...
mdinowit
Offline Send Email
Oct 1, 2008
4:35 pm
Messages 139549 - 139578 of 154347   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help