In the spirit of my other questions regarding "common programming mistakes ... to avoid"
What are some common programming mistakes for a ColdFusion programmer to avoid?
|
5
|
In the spirit of my other questions regarding "common programming mistakes ... to avoid" What are some common programming mistakes for a ColdFusion programmer to avoid? |
||||||||||||||||||||
|
|
|
|
||||||||||||||
|
|
|
Failing to prevent users from seeing coldfusion errors. Add a onError method to a top level Application.cfc to prevent users from seeing those all to detailed dump messages exposing your inner workings(and failings).
varscoper is also a great tool for automating the check for variable scoping omissions in components. |
|||
|
|
|
|
Putting variables in the wrong scope; even if you don't blow up the registry or crash the server, it's easy to slowly drain performance from your application by bumping variables up to the highest scope in which you think you might need them, or to lose information because you stored it in one scope and tried to access them in a different scope. Using Using With administrator access:
|
|||
|
|
|
|
One of the biggest mistakes would be not using cfqueryparam Very bad:
Very good:
Making that mistake will cost you a website. |
|||
|
|
|
|
Shamelessly stealing Henry's formatting... |
|||
|
|
|
|
Overuse of 'query of query'. That is, further filtering or sorting of query results using the cfquery tag. This type of work is often done better by the database itself, particularly if the dataset is large. |
|||
|
|
|
|
In Coldfusion, all variables are global by default, unless they are declared with the So you either have to remember to
There's nothing magic about the name Note that the situation is a tad different for CFCs: In CFCs, the |
||||||
|
|
|
SQL Injection Attacks. It seems like cfquery is just made to allow them. So you should use cfqueryparams. |
|||
|
|
Inappropriate use of # SELECT * Not scrubbing URL/form inputs Debugging on in production environment (even if output is suppressed) |
||
|
|