Sorry for the delay. Almost.
INSERT into tableName(column1,column2,column3)
VALUES(<cfqueryparam value="#value1#" cfsqltype="cf_sql_varchar">,
<cfqueryparam value="#value2#" cfsqltype="cf_sql_varchar">,
<cfqueryparam value="#value3#" cfsqltype="cf_sql_varchar">)
When using cfqueryparam, CF will determine the datatype automatically and will use apostrophes when necessary.)
^_^