Misinterpretation of common characters
I have a description column in my sql table, defined as nvarchar 50.
I ran into this on situation that we did not account for.
The user entered a description of "Tape, Roll, size 6 ' ". I attempted to insert this value into the table using '#form.description#'. Needless to say, it blew up because it was interpreting the single quote after the 6 as another quote. To correct the problem, I eliminated the single quote after the six.
What is the proper way to handle situations like this, or any other situation the ColdFusion might interpret as one of its symbols ?
