Pete Freitag Pete Freitag

Save your self some typing

Published on April 07, 2005
By Pete Freitag
coldfusion

If you want to save yourself some typing, note that cf_sql_varchar is the default value for the cfsqltype attribute in the cfqueryparam tag.

So you can omit the cfsqltype attribute, if your type is cf_sql_varchar at the expense of some readability.

I probably would not mention this if cfqueryparam was not so verbose. Why not type="varchar" what's with all the cfsql/cf_sql_?



cfml cfqueryparam

Save your self some typing was first published on April 07, 2005.

If you like reading about cfml, or cfqueryparam then you might also like:

Fixinator

The Fixinator Code Security Scanner for ColdFusion & CFML is an easy to use security tool that every CF developer can use. It can also easily integrate into CI for automatic scanning on every commit.


Try Fixinator

CFBreak
The weekly newsletter for the CFML Community


Comments

Ah, great tip. You're right, cfqueryparam is horribly verbose, if nothing else this may improve readability...
by Ryan Guill on 04/07/2005 at 1:02:43 PM UTC
That's what code snippets are for, and when you bind them to a keyboard shortcut (as most editors aside from DWMX let you do), it becomes even less typing. For example, I've got a CFQP for integer, timestamp, and varchar mapped to different keys, so I can insert them with a single (compound) keystroke.
by Barney on 04/07/2005 at 1:33:10 PM UTC