Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Sql data type is money, .Net data type is decimal. I send 1.8714 to sql for insert data but sql server round it to 1.8700. How can I save my data? And how do I send without rounding?

share|improve this question
Are you sending the data with or without the separator in it? – Justin Niessner Sep 17 '12 at 14:53
1  
Please be clear in terms of what you mean by "1,8714" - is that "between 1 and 2" or "a bit less than twenty thousand"? – Jon Skeet Sep 17 '12 at 14:53
it is between 1 and 2 – cagin Sep 17 '12 at 14:56
SQL Server will store 4 decimals in a MONEY column. How are you saving the values? (add to your question, don't respond in a comment) – D Stanley Sep 17 '12 at 15:01
@cagin: Edited your question to use culture en-us (or invariantculture) according to the decimal separator. – Tim Schmelter Sep 17 '12 at 15:01

2 Answers

alter table <tablename> alter column <columnname> float
share|improve this answer
1  
may be numeric(19,4) would be better. – tschmit007 Sep 17 '12 at 15:02
up vote 0 down vote accepted

I changed my varable type decimal to float on .Net side and it solved.

share|improve this answer

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.