Critz, > > >>dunno about the rest, but this should be NOT q_createRecordSet.INFLOW IS "" > > why should it be like that? I was under the impression the "IS" has been deprecated, > and that it is similar to a "like" and thus has a longer processing time as opposed > to EQ and NEQ (and yes I do realise that it is only milliseconds.......) >
As far as I'm aware IS is not deprecated..... IS is the text comparator and EQ is the numeric comparator. (not it makes a whole lot of difference in a type-less language, other than for readability) "NOT (variable IS value)" isn't really that much different from "variable IS NOT value". The first checks to see if variable IS equal to value, then inverts the result. The second checks to see if variable is not equal to value straight off. I guess there might be a fraction of a milliseconds difference in the processing time of the two different conditions, but I would think that the first makes the code less readable. babble babble babble... :o) Regards Stephen ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

