Re: Did my own CF/SQL Server performance testing, my world is tur ned upside down.

2006-05-21 Thread Barney Boisvert
It's worth mentioning that there is some overhead for calling a stored proc that isn't involved with straight queries, though it should be minimal. Where stored procs REALLY shine is when you've got a query whose result is only used for some logic driving another query. Using a stored proc in

Re: cfTRANSACTION - success or failed

2006-05-20 Thread Barney Boisvert
, if an exception is raised, that means the transaction was rolled back. cheers, barneyb On 5/20/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is there any way to carry a True/False value from the result of queries between cftransaction tags? Thanks. D -- Barney Boisvert [EMAIL PROTECTED

Re: How do I hate thee, cfdocument? Let me count the ways...or, using 1 piece of code to either stream or write.

2006-05-02 Thread Barney Boisvert
to either stream a PDF to the browser OR save the PDF as a file? Thanks Pete -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com

Re: Is running CF on J2EE server more stable?

2006-04-26 Thread Barney Boisvert
at deploying it using Tomcat. Any thoughts? Kind regards, Andrew -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4

Re: Query works MySQL 4 but not 5

2006-04-19 Thread Barney Boisvert
. Anything jump out? -- Josh -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238213 Archives: http

Re: database linking table naming conventions?

2006-04-16 Thread Barney Boisvert
on the web side). Examples table names might be: LT_Users_Groups or FK_Users_Groups. Is there an understood standard there? Also, the order of the table names might need to be taken into account based on where the foreign keys are. Thoughts? John McKown -- Barney Boisvert [EMAIL

Re: Pause?

2006-04-16 Thread Barney Boisvert
ways that would accomplish about the same thing, but I remember seeing a Java class that does this properly. Ideas? -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: MySQL Connector/J problems

2006-04-10 Thread Barney Boisvert
. the driver.class file exists at C:\CFusionMX7\wwwroot\WEB-INF\lib\com\mysql\jdbc 3. restarted the CF service. 4. reboot (grasping at straws here) Anyone have additional suggestions? -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: getting the closest number to an increment of 25,000

2006-04-06 Thread Barney Boisvert
num (round down): cfset down25 = 25000 * int(num/25000) Closest number, which is LARGER than a given num (round up): cfset up25 = 25000 * ceiling(num/25000) Closest number (round): cfset round25 = 25000 * int(0.5 + num/25000) -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http

Re: Multithreading within a request

2006-04-06 Thread Barney Boisvert
the other, taken about 3 seconds each, but if I could run them both at the same time it would improve the performance of the script greatly, any ideas on how this could be done? Kind regards, Andrew -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have

Re: getting the closest number to an increment of 25,000

2006-04-05 Thread Barney Boisvert
to accomplish this? I know how to get the min and max values from the db, just not sure how to round to the nearest $25,000 mark. -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: Determine an objects type?

2006-03-30 Thread Barney Boisvert
something like object of com.myobject.type. is there anyway i can get that same result by passing an object to a function? I tried the getmetadata function but i don't think this is the correct way. thanks in advance! jonese -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http

Re: CFEclipse, Java Classes, and CVS

2006-03-28 Thread Barney Boisvert
. Thanks in advance, Joelle -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236344 Archives: http

Re: More Sorce Control

2006-03-28 Thread Barney Boisvert
would work. Rich -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236369 Archives: http://www.houseoffusion.com

Re: Creating Java String

2006-03-24 Thread Barney Boisvert
, java.lang.String) cfset ul.init(#myString#) but it returns the following error: Unable to find a constructor for class java.lang.String that accepts parameters of type ( coldfusion.runtime.LocalScope ). -- Oleg Gunkin -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com

Re: cfeclipse plugins

2006-03-21 Thread Barney Boisvert
they are on here but search of archives is futile. What are the good plugins for css, ftp, xml, mysql, etc... tia ~Dave the disruptor~ -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: Dynamically naming cookies?

2006-03-14 Thread Barney Boisvert
this? Thanks Pete -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235392 Archives: http://www.houseoffusion.com/cf_lists

Re: Dynamically naming cookies?

2006-03-14 Thread Barney Boisvert
that the application.applicaitonname variable is being read properly. Thanks, Pete On 3/14/06, Barney Boisvert [EMAIL PROTECTED] wrote: I believe this is what you're looking for? cfset value = cookie[application.applicationname _util] / cheers, barneyb On 3/14/06, Pete

Re: MySQL question

2006-03-10 Thread Barney Boisvert
Ashenfelter [EMAIL PROTECTED] wrote: You want to look at the REGEXP operator built into MySQL. You should be able to do what you wish. http://dev.mysql.com/doc/refman/5.0/en/regexp.html -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: Source Code Versioning with ColdFusion

2006-03-09 Thread Barney Boisvert
for our development and currently do not use any code versioning software. What would you recommend for us or what are you using and how is that going? Thanks for the feedback. Allan M. Jagos -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100

Re: CFEclipse - Lost my snipTree?

2006-03-08 Thread Barney Boisvert
and select if from the CFEclipse node -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234653 Archives: http

Re: Object detection

2006-03-07 Thread Barney Boisvert
the object --- /cfif thanks for reading. Cheers Martin -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4

Re: CFEclipse - Lost my snipTree?

2006-03-07 Thread Barney Boisvert
fix this? I even copied the snippets directory out, uninstalled all of eclipse and reinstalled it, all with the same results, a non functional snip tree view. Help! Sandy Clark -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: Why do my selects in an iFrame do this?

2006-03-06 Thread Barney Boisvert
SELECT elements are rendered by the OS, not the browser. So you can't draw on top of them. If you need to have something drawn on top of the space they occupy, you need to hide the SELECT element (display: none) manually, and then make it visible again (display: block) when the content above it

Re: DevNet version of CF7

2006-03-01 Thread Barney Boisvert
one can call another and so I can keep the various sites I support separate. Kevin Roche Objective Internet -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message

Re: Can moving from cf server 5 to mx7 cause an app to stop working?

2006-02-26 Thread Barney Boisvert
you Steve -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233508 Archives: http://www.houseoffusion.com/cf_lists

Re: ActiveSpell and tinyMCE

2006-02-22 Thread Barney Boisvert
the content back to the form field before you grab the content to check. cheers, barneyb On 2/22/06, Brian Peddle [EMAIL PROTECTED] wrote: Has anyone implemented ActiveSpell and tinyMCE and have tips on doing so? Thanks! -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com

Re: cfsavecontent and cfqueryparam

2006-02-21 Thread Barney Boisvert
cfsqltype=cf_sql_integer value=#userID# /cfsavecontent Russ -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233006

Re: version control and IDEs

2006-02-17 Thread Barney Boisvert
a second Apache 2 instance for that reason alone. cheers, barneyb -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i

Re: ArrayAppend oddity

2006-02-16 Thread Barney Boisvert
, then checks the length of the value to see if it's four or five digits. If it's four, you can reasonably assume that the first character was a zero before the addition. You could then plop it back on the front of the value. Dave Watts, CTO, Fig Leaf Software -- Barney Boisvert [EMAIL PROTECTED

Re: OT: Compiling java source code

2006-02-16 Thread Barney Boisvert
the classpath stuff cuz I get errors like this: SimpleGateway.java:12: cannot resolve symbol symbol : class EmptyGateway location: package examples import examples.EmptyGateway; and a bunch of other errors... Anyone know how to do this? rick -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145

Re: CFC cftransaction

2006-02-15 Thread Barney Boisvert
cftransaction to handle it all. Is there a better way to handle this? Thank you, Aftershock Web Design, Inc. by: Stan Winchester -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: CFC Security Flaw

2006-02-14 Thread Barney Boisvert
without the virtual directories, I get an error that it can't find cfcexplorer.cfc. What am I supposed to do? -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message

Re: version control and IDEs

2006-02-14 Thread Barney Boisvert
... I should add that CF Studio and Eclipse are the biggies...I can drop HomeSite+ locally for Eclipse, but the client is using CF Studio so it should work for Eclipse and CF StudioHomesite+ is just a bonus ;-) Cheers Bryan Stevenson B.Comm. -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145

Re: version control and IDEs

2006-02-14 Thread Barney Boisvert
, anyone can. What's more, it's free and well documented, so there's little to lose. Pete -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http

Re: cfquery param vs cfif + N

2006-02-13 Thread Barney Boisvert
, security etc etc. So I am just trying to validate this a bit. -- Duncan I Loxton -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com

Re: Decimal places

2006-02-11 Thread Barney Boisvert
cfif data contains . Display with decimal place cfelse Don't /cfif But that doesn't work either. I don't really want to have to do workarounds like converting numbers to strings, there must be an easy way to do what I want? -- Russ -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145

Re: ValueList and Dynamic Query and Column

2006-02-02 Thread Barney Boisvert
this being a problem, but I'm trying to create a value list from a dynamic query and column. Something like this: function(query, column) { return valueList(query.column); } That's the gist of it, but it doesn't work. Any suggestions? Thanks M!chael A Dawson -- Barney Boisvert [EMAIL

Re: db eamil cleaner

2006-02-02 Thread Barney Boisvert
How about just this: SELECT email, MIN(id) FROM table GROUP BY email cheers, barneyb On 2/2/06, dave [EMAIL PROTECTED] wrote: anyone have a good script to run through a mysql db and remove duplicate(but leave 1) and improper emails? tia ~Dave the disruptor~ -- Barney Boisvert [EMAIL

Re: Nested Set Model

2006-02-01 Thread Barney Boisvert
|Starship Troopers|2 4|Friday|2 So if I deleted Sci/Fi, records 3 and 4 would be orphaned. I'm using mySQL by the way (if it matters). !//-- andy matthews -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: Flex 2 and CF Connectivity Beta 1 Now Available!

2006-02-01 Thread Barney Boisvert
PROTECTED] wrote: Questions: Does this mean that all we have to have is CF 7.0.1 and Flex Builder to develop and deploy RIA's? We don't have to buy and install both CF 7.0.1 and Flex 2.0 (when it's released that is)? -Aaron -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com

Re: Flex 2 and CF Connectivity Beta 1 Now Available!

2006-02-01 Thread Barney Boisvert
, if you want those. ColdFusion isn't related at all, except that the new updater makes you able to connect your Flex UIs to CFCs in much the same way you've always been able to connect to Java objects. cheers, barneyb On 2/1/06, Aaron Roberson [EMAIL PROTECTED] wrote: On 2/1/06, Barney Boisvert

Re: Nested Set Model

2006-02-01 Thread Barney Boisvert
accidentally deleted 500 employees from the DB and it'll take 5 hours to restore the last backup. cheers, barneyb On 2/1/06, Snake [EMAIL PROTECTED] wrote: Unless u have a cascade delete trigger to automatically remove orphans. Russ -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http

Re: Nested Set Model

2006-02-01 Thread Barney Boisvert
imagine i am all twisted about on this at the moment. mike -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4

Re: CFMX 7 on Linux

2006-02-01 Thread Barney Boisvert
had any issues in production. cheers, barneyb On 2/1/06, Anne Girardeau [EMAIL PROTECTED] wrote: Has anyone ever run across instability issues with CFMX 7 running on a Linux/Apache box? Is it better to run CF in Windows vs Linux? Thanks, --Anne -- Barney Boisvert [EMAIL PROTECTED

Re: CFMX 7 on Linux

2006-02-01 Thread Barney Boisvert
Yep me too. However, Linux is the only platform I've load tested against, and OSX is the only other platform I've ever even run it on, so I really don't have any idea. cheers, barneyb On 2/1/06, Munson, Jacob [EMAIL PROTECTED] wrote: -Original Message- From: Barney Boisvert

Re: Passing null arguments to a java object on purpose

2006-02-01 Thread Barney Boisvert
(and i know this works cuz i've tested it) you can use Javacast() to create a null. writer.write(JavaCast(null, ) , iioImage, iwparam); but that option wasn't available in CFMX 6.1 ... anyone know how to do it in 6.1? rick -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http

Re: Nested Set Model

2006-02-01 Thread Barney Boisvert
most need the data? Single record, all ancestors/descendants, all records at a given depth... Have fun with whichever method you choose. We can help you with recursion if you need it. Barney has already provided some excellent sample query for the nested set. ~Brad -- Barney Boisvert

Re: Nested Set Model

2006-02-01 Thread Barney Boisvert
v4.x which doesn't support subselects. !//-- andy matthews -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com

Re: SPAM-LOW: Re: Nested Set Model

2006-02-01 Thread Barney Boisvert
a nested set without additional queries? For example, a fully extended sidebar navigation pulling from a nested set page table with a different style for each indent level . . . Best Wishes, Peter -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100

Re: SPAM-LOW: Re: Nested Set Model

2006-02-01 Thread Barney Boisvert
the first generation of children? eg. i wish to click on the winter category and just bring up the pants and skirts categories ( i will be using simple text navigation) -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: SPAM-LOW: Re: Nested Set Model

2006-02-01 Thread Barney Boisvert
level nodes), you'd run a query which would find every record, compute the sub query for each record as part of the filter and then only return the records with the appropriate sub query value. Does that scale well to large record sets? Best Wishes, Peter -- Barney Boisvert [EMAIL PROTECTED

Re: Password Strength Graphic

2006-01-31 Thread Barney Boisvert
. Eric J. Hoffman -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm

Re: Nested Set Model

2006-01-31 Thread Barney Boisvert
piece of data out with a single query (possibly using a subquery as well). cheers, barneyb On 1/30/06, Brad Wood [EMAIL PROTECTED] wrote: 1. Recursion or 2. A while loop over a table variable ~Brad -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have

Re: Nested Set Model

2006-01-31 Thread Barney Boisvert
our production environment to a grinding halt. :) ~Brad -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4

Re: Nested Set Model

2006-01-31 Thread Barney Boisvert
quickly wears off. Either way, it's important to look at the hierarchical problem you are trying to solve rather than blindly choosing one approach over the other. -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: Nested Set Model

2006-01-31 Thread Barney Boisvert
) would become orphans. So you'd at least have to change the association of the child of the deleted record. -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message

Re: Nested Set Model

2006-01-31 Thread Barney Boisvert
procs. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 31, 2006 2:36 PM To: CF-Talk Subject: Re: Nested Set

Re: Nested Set Model

2006-01-31 Thread Barney Boisvert
model (Turn page over and write on back if you need more room) Step 1: Step 2: Step 3: Step 4: Step 5: Step 6: Step 7: Step 8: Step 9: Step 10: Step 11: Step 12: (yes, yes, I know.. we were talking about deletion, NOT moving-- I just couldn't help myself :] ) ~Brad -- Barney

Re: Which string operation is faster?

2006-01-30 Thread Barney Boisvert
of these executes faster, or do they each take the same amount of processing? Are they equivalent under the hood? cfset foo = #var1#123 or cfset foo = var1 123 -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: Page loading time

2006-01-27 Thread Barney Boisvert
noticeably faster. I am not sure what to do about that. My JS file isn't even very large, nor does it do any processing during page load. Maybe firefox is just slow to parse JS files. I will keep trying to get the page load smaller. ... Ben Nadel -- Barney Boisvert [EMAIL

Re: CFEclipse Vs Dreamweaver

2006-01-27 Thread Barney Boisvert
ColdFusion.) But in CFEclipse I need to type everything in. Well, may be I am not geek enough but just typing everything in for complex UI seem like really a chore to me. Thanks Regards, Phyo Pine -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100

Re: CFEclipse Vs Dreamweaver

2006-01-27 Thread Barney Boisvert
to you, it is probably best to stick with that rather than CFEclipse. One of the goals of CFEclipse is to be a code centric tool, which means that we have pretty much no intention of adding design view support. Spike -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got

Re: Page loading time

2006-01-26 Thread Barney Boisvert
and such. ... Ben Nadel -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230541 Archives: http://www.houseoffusion.com

Re: ISAPI_Rewrite help - basic rewrite script?

2006-01-25 Thread Barney Boisvert
, so that basically all my pages get processed correctly but it ignores pictures etc in the media directory. Anyone have an idea on what I need to add? Thanks. -- Damien McKenna -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: CF 7.0.1 output to console on OS X

2006-01-25 Thread Barney Boisvert
-- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230452 Archives: http://www.houseoffusion.com/cf_lists

Re: CF 7.0.1 output to console on OS X

2006-01-25 Thread Barney Boisvert
is written to it? tail -f cfserver.log On 1/25/06, Barney Boisvert [EMAIL PROTECTED] wrote: Another option would be to use `tee` to send everything both places. I believe this is the syntax you'd want, but don't quote me on that. eval $CFSTART 21 | tee -a $CF_DIR/logs/cfserver.log -- Barney

Re: CF 7.0.1 output to console on OS X

2006-01-25 Thread Barney Boisvert
] wrote: On 1/25/06, Barney Boisvert [EMAIL PROTECTED] wrote: What if you need 11 lines? Or 50? Easier to scroll back a terminal window tail -f shows *all* continuous output, just as if you had it printing to the console anyway. You can scroll back in Terminal as much as you need

Re: Question about ColdFusion and the mySQL CAST function

2006-01-24 Thread Barney Boisvert
from within mySQL. Would you mind taking a look at this thread on Sitepoint and offering any opinions, I'm the poster. http://www.sitepoint.com/forums/showthread.php?p=2450978#post2450978 !//-- andy matthews -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http

Re: Question about ColdFusion and the mySQL CAST function

2006-01-24 Thread Barney Boisvert
... The ToString(column) worked perfectly. Sucks though because I use cfdump a lot to peer into the recordset and when dumping this query, I just get binary. Oh well. !//-- andy matthews -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have

Re: identifying server in load balanced env

2006-01-24 Thread Barney Boisvert
-- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230388 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4

Re: Any reason to bother with SES?

2006-01-24 Thread Barney Boisvert
of intelligent search engines, is there any reason to bother with SES anymore? Bar installing an ISAPI filter, I can already do http://mysite.com/?go=page which is pretty short as is. -- Damien McKenna -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have

Re: Genreting component documentatiton

2006-01-20 Thread Barney Boisvert
If you don't like doing it that way (it requires CFIDE access, and an RDS/admin password), you can use cfcdoc (by Spike - tweaked by me: http://www.spike.org.uk/projects/cfcdoc/), which parses the CFC files directly off the file system. Cfcdoc also has the advantage of not requiring instantiating

Re: Sorting array

2006-01-19 Thread Barney Boisvert
/2006||3||Seattle||20||ATT||a||Append||390||20060207 What do you suggest? Cheers MD -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http

Re: cfsavecontent bug?

2006-01-19 Thread Barney Boisvert
cfinvoke component test method=test returnVariable=myStr #mystr# /cfoutput Code listing 2 cfinvoke component test method=test returnVariable=myStr cfoutput #mystr# /cfoutput -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: cfsavecontent bug?

2006-01-19 Thread Barney Boisvert
. But to make things safe (and simple) just don' tleave it off. -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230030

Re: cfsavecontent bug?

2006-01-19 Thread Barney Boisvert
, barneyb On 1/19/06, Russ [EMAIL PROTECTED] wrote: Well that's what we've had to do, but maybe it's me, but somehow I expected there to be an implicit cfoutput as part of cfsavecontent, sort of like cfmail... -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail

Re: cfsavecontent bug?

2006-01-19 Thread Barney Boisvert
and see if it works). cheers, barneyb On 1/19/06, Russ [EMAIL PROTECTED] wrote: Well with cfsavecontent I'm not asking it to output to the html stream, just into a variable. -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Thursday, January 19, 2006 3:07 PM

Re: cfsavecontent bug?

2006-01-19 Thread Barney Boisvert
is not a custom tag... it's a built in tag now in CF. If they can make it work properly for cfmail, why can't they make it work properly for cfsavecontent? -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: cfsavecontent bug?

2006-01-19 Thread Barney Boisvert
cfoutput#test()#/cfoutput I do this all the time when I'm creating a string that is complex. It's easier to use cfsavecontent then a bunch of foo goo etc. -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: Where should the cftransaction tags go when using CFC's?

2006-01-19 Thread Barney Boisvert
, Inc. by: Stan Winchester -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230059 Archives: http

Re: Significant Performance Hit on Recursive Custom Tags?

2006-01-18 Thread Barney Boisvert
performance implications, oh HOW I know it has performance implications. IE, this is a great way to bring a server to a screeching halt! -- Ian Skinner -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: Significant Performance Hit on Recursive Custom Tags?

2006-01-18 Thread Barney Boisvert
that recursive functions would be much faster/less-resource-intensive that tags. Tags maintain a lot of references (the caller chain, the tag nesting chain, etc) not maintained by functions and so forth. Jim Davis -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail

Re: Significant Performance Hit on Recursive Custom Tags?

2006-01-18 Thread Barney Boisvert
Yeah, you have to have both enabled. On 1/18/06, Baz [EMAIL PROTECTED] wrote: Barney, if you have execution times enabled in the debugging output That's only if you have debugging enabled right? Baz -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I

Re: Open Source CF software

2006-01-17 Thread Barney Boisvert
be stealing. cheers, barneyb On 1/17/06, Bryan Stevenson [EMAIL PROTECTED] wrote: I'm curious how someone can steal an open-source app? By definition it's free to use and modify. I could see how someone could try and re-brand it as their own.but steal??? Bryan Stevenson B.Comm. -- Barney

Re: Gmail's interesting approach to usernames

2006-01-17 Thread Barney Boisvert
. As long as they inform you ahead of time I guess I'm ok with it I wonder if it is non-compliant with an RFC out there somewhere -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: OT: Eclipse is the One Ring?

2006-01-13 Thread Barney Boisvert
plug-in (I've looked through and not found anything) or some other good, free, opensource software that people can recommend for this part of web work? Thanks, Matthieu -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites

Re: Building XML

2006-01-13 Thread Barney Boisvert
? -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229537 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm

Re: Building XML

2006-01-13 Thread Barney Boisvert
Yes, thank you Adrian. CFSAVECONTENT, not CFCONTENT. cheers, barneyb On 1/13/06, Adrian Lynch [EMAIL PROTECTED] wrote: You meant cfsavecontent didn't ya? Ade -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: 14 January 2006 00:08 To: CF-Talk Subject: Re

Re: OT: CSS mystery

2006-01-12 Thread Barney Boisvert
Because IE and Opera are incorrectly ignoring the first two periods, while Firefox is correctly ignoring the rest of the rule? I'm not sure that applies to selectors or just rules, but I'd guess it's for both. Or perhaps its a case-sensitivity issue. CSS is case sensitive, but I believe IE

Re: Smallest, coolest function I ever wrote: Struct()

2006-01-04 Thread Barney Boisvert
newStruct, I believe, is already in cflib to do the same thing. newArray as well, I believe. Now if only these were built-ins, so we could actually a struct and array literals in CFML, but oh well. cheers, barneyb On 1/4/06, Damien McKenna [EMAIL PROTECTED] wrote: -Original Message-

Re: Java substring

2005-12-28 Thread Barney Boisvert
calling the java runtime or service factory. Russ -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Logware (www.logware.us): a new and convenient web-based time

Re: How to test for null in a query object

2005-12-28 Thread Barney Boisvert
with an empty sting in the column ;-/ -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start

Re: Java substring

2005-12-27 Thread Barney Boisvert
-- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting

Re: Java substring

2005-12-27 Thread Barney Boisvert
that. -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting

Re: Anyone make a CF framework like this?

2005-12-23 Thread Barney Boisvert
from FB3 to more of an MVC framework. -- Phil -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Logware (www.logware.us): a new and convenient web-based time tracking

Re: Whats wrong with this friendly URL idea?

2005-12-21 Thread Barney Boisvert
Web Systems mysecretbase.com -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http

Re: Whats wrong with this friendly URL idea?

2005-12-21 Thread Barney Boisvert
to call is at c:\web\mysite\subfolder\include.cfm I plugged this into the error handler: cfscript getPageContext().forward ../../web/mysite/subfolder/include.cfm); /cfscript Result was a cf file not found error BAH! -- -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http

Re: ssl / https

2005-12-21 Thread Barney Boisvert
[EMAIL PROTECTED] wrote: If I use https with a security certificate is all transmitted data encrypted? -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 100 invites. ~| Logware

Re: CFScript acting single-threaded

2005-12-21 Thread Barney Boisvert
threaded and could only handle one task at a time. I then took the same exact code, and formated in as tags with no additional changes other than to convert the script syntax for the method call into a cfinvoke tag, and it worked fine. What's up with that? Adrian Showalter -- Barney Boisvert [EMAIL

<    2   3   4   5   6   7   8   9   10   11   >