Re: Time-our on compute intensice page

2009-03-17 Thread Ron Gruner
>Put in your page. > >Adrian Works! This is a great forum for folks like me. Your help is really appreciated. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://

Time-our on compute intensice page

2009-03-17 Thread Ron Gruner
I'm executing a compute-intensive page that has 500 iterations which generates an "exceeded allowable time limit" error after 30 seconds or so. The page needs to run 500 seconds to finish. I tried executing one iteration and then having the page call itself using but that errors out after 10

Re: CFTOOLTIP Not Working

2009-02-26 Thread Ron Gruner
No errors either during load or mouse over. I'm wondering if some recent IIS security upgrade is blocking it... ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://a

CFTOOLTIP Not Working

2009-02-26 Thread Ron Gruner
has stopped working on my local test server (IIS, CF8) after a year but the same pages work fine on the production server. Nothing's changed that I can think of and all other JS and Spry functions continue to work fine both locally and remotely. What would cause just to not work?

Re: Query of Queries Functions

2009-02-26 Thread Ron Gruner
Cool. The help is really appreciated. What a great resource. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive

Re: Query of Queries Functions

2009-02-26 Thread Ron Gruner
There's no obvious way to delete a QofQ row. Am I missing something? Thanks again. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172

Re: Query of Queries Functions

2009-02-26 Thread Ron Gruner
Thanks Matt. Is there some other way to build a small and temporary database that resides in RAM and can be manipulated with all, or most, SQL functions? I suppose Structures is the best approach but they're new for me. ~| A

Query of Queries Functions

2009-02-26 Thread Ron Gruner
Is there a way to do SQL Updates and Deletes on record sets organized as Query of Queries? It seems that only SELECT works. I'm using CF8. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

Re: Newbie tripping over SQL Single Quotes

2009-01-12 Thread Ron Gruner
Steve, HTH - The cfqueryparam change fixed the problem. The support here is so much better than anything I've found on the Adobe site. Thanks for the help >Need a little help. This query fails when the encrypted PW contains a single >quote... > >UPDATE Members >SET PW = '#Encrypt(form.PW,En

Newbie tripping over SQL Single Quotes

2009-01-12 Thread Ron Gruner
Need a little help. This query fails when the encrypted PW contains a single quote... UPDATE Members SET PW = '#Encrypt(form.PW,EncryptKey)#' WHERE Member_ID = #form.Member_ID# I've tried PreserveSingleQuotes like this... UPDATE Members SET PW = '#PreserveSingleQuotes(Encrypt(form.PW,EncryptKe