Why is cfsqltype="CF_SQL_DECIMAL" rounding values
I am submitting values to MS SQL where I set the value in the CFQUERY using
databasefield = <cfqueryparam value="#TheValueHere#" cfsqltype="CF_SQL_DECIMAL">
The database is set to DECIMAL(8,2)
If I manually type in a value into the database such as 1.5 it works fine
If I use the cfqueryparam above, and post 1.5, it rounds to 2, so that's not right
I removed the cfqueryparam, and again submitted the valkue of 1.5 in the variable, and it worked fine, I end up with 1.5 in the database
databasefield = #TheValueHere#
Would anybody have any idea why using CFQUERYPARAM DECIMAL is causing it to round?
