I am having some trouble updating an oracle db that has a
clob field, this is the part of the query that is getting the form
data:
<cfqueryparam cfsqltype="cf_sql_clob"
value="#trim(form.additional_information_fr)#">
When I dump the form variables it is getting passed over ok,
but when I output the update SQL statement I am getting a '?' next
to the field and it inserts a blank string.
I also tried this: <cfqueryparam
cfsqltype="cf_sql_longvarchar"
value="#trim(form.additional_information)#"> which works as long
as the data is less then 4000 charcters, I know there are issues
with drivers and have incorporated the latest driver release from
adobe:
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=1a3c2ad0
Still no luck, anyone else encounter issues with Oracle and
Clob fields that could shed some light on the situation for me.
I've been searching the web all day and tried a few different
solutions without any success.