Dertoni Dertoni wrote:
Hi,
I'm new to Ruby, Rails and this forum... so bear with me, thx.
I have kind of a strange problem...
I got a decimal field in a mysql table (precision 3, scale 1) for numbers like: "12", or "12.4"; Problem is, whenever I input "0.5" as a number, rails stores "5.0" in the db... Even when I edit the db by hand, it displays "5." ?
I just don't get what's going on. Do u got any ideas?
dertoni
Maybe your problem is related to localization issues. Are you using some localization plugins, such as Globalize or any other?
You should see the content of log/development file to find how Rails is writing the SQL commands. Then you'll have a hint of what is happening...
Anyway, check if you are using the latest version of Rails...
Good luck,
Rodrigo.