Re: How to dump a sql query to text

2007-01-22 Thread Qasim Rasheed
I am not sure if this solves your problem, but if you have debugging turned on the server, you can get several information from the servicefactory debugging object. Here is a UDF that I wrote a while back which return true if the query ran was a cached one. http://www.cflib.org/udf.cfm?ID=1202 Th

Re: How to dump a sql query to text

2007-01-22 Thread Christopher Jordan
Yeah, but you'd still have a problem when using s. :o' Chris Scott Weikert wrote: > Well, you could start by throwing the SQL query code into a var to begin > with: > > > > Or build it up as you would build it within the tags. > > Then execute it: > > > #SQLVar# > > > And since it's already

Re: How to dump a sql query to text

2007-01-22 Thread Christopher Jordan
Dude! That's cool. Now I *really* wish I was running on CF7. :o) Rick, I probably should have stated that my way is what I do in CFMX6.1 Chris Andy Matthews wrote: > CF7 has a built in variable that gets returned with every query. It contains > the actual final query language. It's [query_name].

Re: How to dump a sql query to text

2007-01-22 Thread Christopher Jordan
The only way I've done that before is to do something like: Select * from blah Select * from blah Basically writing the query twice. It kinda sucks, but that's the only way I've thought of. Also, if your real sql contains cfqueryparams, then you have to get rid of those in the versi

Re: How to dump a sql query to text

2007-01-22 Thread Scott Weikert
Well, you could start by throwing the SQL query code into a var to begin with: Or build it up as you would build it within the tags. Then execute it: #SQLVar# And since it's already in a var, you can write it to your DB as you see fit.

RE: How to dump a sql query to text

2007-01-22 Thread Andy Matthews
CF7 has a built in variable that gets returned with every query. It contains the actual final query language. It's [query_name].sql. http://www.cfquickdocs.com/?getDoc=cfquery -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED] Sent: Monday, January 22, 2007 1:33 PM To: C