I have searched and can not find the answer. I double checked the data types between SQL and CLR and I appear to have that correct. But I am getting a different result between using CLR and SQL. Not much, but enough to be off a penny. And that is not acceptable.

Example in VB.NET

Dim dLoanAmount As Decimal = 169500  
Dim dNetDiscount As Decimal = 100.871  
Dim dDiscountPremium As Decimal = (dLoanAmount * (dNetDiscount - 100.0) / 100.0) 
Console.WriteLine("original amount is " + dDiscountPremium.ToString())

will display 1476.34499999999

Example in SQL

DECLARE @loanAmt decimal (20,10)  
DECLARE @discount decimal (20,10)  
SET @loanAmt = 169500.000000  
SET @discount = 100.871000  
select   @loanAmt*(@discount-100.0)/100.0

that returns 1476.345000000000000

We have to use the VB for some documents, but for some file transfers we use sql. Anyone have any suggestions why this is?

cheers
bob

link|improve this question

69% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You're using double literals instead of decimal ones. Try this:

Dim dLoanAmount As Decimal = 169500D
Dim dNetDiscount As Decimal = 100.871D  
Dim dDiscountPremium As Decimal = (dLoanAmount * (dNetDiscount - 100D) / 100D) 
Console.WriteLine("original amount is " + dDiscountPremium.ToString())
link|improve this answer
First, welcome back – astander Oct 2 '09 at 21:35
That worked out great, but I am pulling the data from a database and those were the values. I just set them for the example. The data type in the table is decimal(16,6) for both the loan amount and discount. Thanks for your time. – Bob Cummings Oct 2 '09 at 21:42
You need to find out exactly what the values are in both the database and .NET then. As you can see, when you get the right values into .NET, the arithmetic works fine. – Jon Skeet Oct 2 '09 at 22:20
Jon I sure appreciate your time. Unfortunately those are the exact values in the database. That is why I am confused. And the data types match up SqlDecimal to CLR Decimal according to the MSDN documentation. – Bob Cummings Oct 4 '09 at 11:50
@Bob: They clearly aren't the exact values by the time you've extracted them from the database - because as my example shows, if you do give .NET the right values, you get back the right result. Try to work out exactly what value you're getting in .NET - if you could show how you're fetching the values, that would help too. You can print out a "round trip" value with the "r" format specifier: Console.WriteLine(value.ToString("r")) – Jon Skeet Oct 4 '09 at 12:55
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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