Avoid Select *
A recent discussion on CF-Talk implied cfqueryparam as the culprit in a query problem. It seems, however that the problem only happens when using cfqueryparam in conjuction with "select *".
In the discussion, Ben Nadel pointed out reasons he recommends listing out columns instead of using of "select *". His words:
http://www.1pixelout.net/2004/06/16/cfqueryparam/
I totally agree with you: always avoid using SELECT *
Thanks for pointing out that blog entry.
I hadn't considered the problem of adding a column before the end. I didn't know the database referenced the column list ordinally.
Another reason to avoid "select*".