Building SQL string and need single quotes [message #372784] |
Fri, 09 March 2001 09:15 |
Allan Jagos
Messages: 3 Registered: March 2001
|
Junior Member |
|
|
I am building a SQL query string which needs to have single quotes aorund a list of items. But SQL is seeing my single quotes and processing them as double single quotes which doesn't work.
<cfset txtDepFile = txtDepFile & "','" & txtFile>
The SQL that gets processed looks like this:
OR ppaDepositions.Attachment in ('Depo1.txt'',''Depo2.txt'',''test.doc')
What cna I do to account for single quotes transforming into double quotes?
Thanks
|
|
|