CFSQLTYPE="VARCHAR2" ???
I am remediating some older ColdFusion code which uses an Oracle database. I have noticed many instances where a CFQueryParam has been implemented like this;
<cfqueryparam cfsqltype="varchar2" value="#someStringVariable#" />
Is this an undocumented CFSQL Type that I am unaware of?
If not why doesn't this throw an error at run time?
What validation of the data takes place if you enter an invalid CFSQLType?
