Monthly Archives: February 2007

February 4, 2007
Adobe Feature Request/Bug Report Form

There was a lot of talk flying around the blogosphere over the last few months regarding the much anticipated ColdFusion 8 with a lot of people blogging their ‘wishlist’ for the new version (codenamed Scorpio).
But one thing you might not have known (I certainly didn’t) is that there is an official form on the Adobe [...]

February 4, 2007
cfqueryparam and conditional handling of NULL’s

Most people know that you should always use cfqueryparam on your query parameters when querying a database to (among other things):

secure your database from unauthorised/malicious users
perform data validation
take advantage of SQL bind parameters

The cfqueryparam tag can and should be used whether the query be a SELECT, UPDATE, DELETE or INSERT.
One of the problems I’ve had [...]