Closed GoogleCodeExporter closed 9 years ago
I found the culprit in the Illudium code.
Line 85 of com.cf.model.datasource.mssql.cfc is:
<cfcase value="numeric">
<cfreturn "cf_sql_varchar" />
</cfcase>
And should be:
<cfcase value="numeric">
<cfreturn "cf_sql_numeric" />
</cfcase>
Original comment by judah.mc...@gmail.com
on 4 Dec 2008 at 11:23
Issue is corrected in svn rev 154. shouldn't be cf_sql_numeric. Should be
cf_sql_integer.
Original comment by brian.ri...@gmail.com
on 5 Dec 2008 at 1:09
Original issue reported on code.google.com by
judah.mc...@gmail.com
on 3 Dec 2008 at 9:52