Specifications
© 2013 Adobe Systems Incorporated and its licensors. All rights reserved.
<cfscript>
writeOutput("Installing ODBC Services...<br>");
returnValue = myObj.installODBCservice();
writeOutput("ODBC Services installed");
</cfscript>
You then reinstall the ODBC services using the following code:
<cfscript>
writeOutput("Removing ODBC Services...<br>");
returnValue = myObj.removeODBCservice();
writeOutput("ODBC Services removed");
</cfscript>
Unable to INSERT or UPDATE an Oracle 10 database when there is a CLOB field
Problem:
Columns have a 4 KB size limit in Oracle. If a column is larger that the 4 KB size limit, when you try to use
either the or tag, the following error is generated:cfinsert cfupdate
ORA-01704: string literal too long
Solution:
To avoid this error, use either the or tag.----cfquery cfqueryparam
#back to top
Migration problems
Data sources not recognized
Problem:
When you migrate from an earlier version of ColdFusion to ColdFusion 10, your application does not
recognize data sources.
Solution:
Redefine the data sources.
CFCs not recognized in Dreamweaver
Problem:
When you migrate from an earlier version of ColdFusion to ColdFusion 10, the CFCs do not appear in the
Components panel of Dreamweaver.