kensington43
Technical User
I have major problems with quotes or apostropes copied from either a Word document or a web browser giving me box characters on my Cold Fusion MX 6.1 web pages using Access 2000 database after my Updates or Inserts.
I can either use the ReReplace function to eliminate the characters or use the cfqueryparam function to escape the quotes and apostropes or something called PreservesingleQuotes.
This didnt work because the quotes and apostropes still dont translate right and give me boxes:
Please advise what is the most efficient way and if I am doing this right using the cfqueryparam.
Are there any side effects to using cfqueryparam because in the last two years of CF web pages I unfortunately never used it.
I can either use the ReReplace function to eliminate the characters or use the cfqueryparam function to escape the quotes and apostropes or something called PreservesingleQuotes.
This didnt work because the quotes and apostropes still dont translate right and give me boxes:
Code:
for (i = 128; i LTE 160; i = i + 1)
{
Text = Replace(Text, Chr(i), "", "All");
}
Please advise what is the most efficient way and if I am doing this right using the cfqueryparam.
Are there any side effects to using cfqueryparam because in the last two years of CF web pages I unfortunately never used it.
Code:
<cfquery name="insert_record" datasource="myDSN">
INSERT into tablename (
textareaField,
column2,
column3
VALUES (
<cfqueryparam value="#dynamic_value_1#" cfsqltype="cf_sql_char">,
'#FORM.column2#',
'#FORM.column3#'
)
</cfquery>