Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I insert a value of 10 or 10.0 to a decimal(10.0) column I get 9.9999999... - is there any way to get a 10 when inserting it?

Using entity framework, .NET 4.5, MySQL > 5

Table definition: decimal(10,9)

share|improve this question
1  
What's your table definition? – Explosion Pills Feb 25 at 0:28
1  

1 Answer

up vote 1 down vote accepted

I've posted link with expalation.

You can use double instead of decimal.

share|improve this answer
is there an option to change the column decimal definition, I get Change column type is not supported – Idan Shechter Feb 25 at 0:44
In phpMyAdmin running on my server, I can do it. Look: stepolabs.com/upload/double.png – Stepo Feb 25 at 0:47
can't understand the difference between double and decimal :[ – Idan Shechter Feb 25 at 0:49
Now, you don't need to understand it ^^ you have to change it. If you are not running phpMyAdmin, here is way how to do that: stackoverflow.com/questions/1979883/… Difference is in range and storing of data. – Stepo Feb 25 at 0:53
social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/… read the discussion, but now, my bed is waiting for me, so good night :) – Stepo Feb 25 at 0:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.