Tagged Questions

0
votes
6answers
54 views

How to calculate difference in hours (decimal) between two dates in SQL Server?

I have to calculate the difference in hours (decimal type) between two dates in SQL Server 2008. I couldn't find any useful technique to convert datetime to decimal with 'CONVERT' …
1
vote
3answers
28 views

Why does the balance become 1.00 whenever the sql command below is executed no matter what value of $cost is?

Why does the balance become 1.00 whenever the sql command below is executed no matter what value of $cost is? update account set balance=balance-'$cost' and username='steven'" T …
0
votes
1answer
23 views

SQL Decimal Issue

I have an input string in the following format: 12.34 When I call this line: db.AddInParameter(insertMessageDetailCommand, "AttachmentSize", System.Data.SqlDbType.Decimal , Conv …
1
vote
2answers
58 views

How can a float representation be off 1 from a decimal representation in perl?

I ran across an interesting issue in some of my "humanize_bytes()" code. This loop represents the issue without all the other logic. The loop needs to stop when the bytes have be …
1
vote
2answers
91 views

Hex 0x0001 vs 0x00000001

hi, often in code that uses permissions checking, i see some folks use hex 0x0001 and others use 0x00000001. these both look like an equivalent of a decimal 1, if i'm not mistakin …
1
vote
5answers
89 views

C# : Check value stored inside string object is decimal or not

in C# , how can i check whether the value stored inside a string object( Ex : string strOrderId="435242A") is decimal or not?
5
votes
7answers
227 views

Why is System.Math and for example MathNet.Numerics based on double?

All the methods in System.Math takes double as parameters and returns parameters. The constants are also of type double. I checked out MathNet.Numerics, and the same seems to be th …
1
vote
4answers
95 views

convert decimal to hex python

Hi All, Im building a server in python, i need to convert a decimal value to hex like this : let's say the packet start by 4 bytes which define the packet lenght : 00 00 00 00 if …
1
vote
5answers
113 views

How do I compare two decimals to 10 decimal places?

I'm using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them …
0
votes
7answers
155 views

How to work around the decimal problem in JavaScript? [closed]

Possible Duplicates: Strange problem comparing floats in objective-C Is JavaScript’s math broken? 1.265 * 10000 = 126499.99999999999 ????? After watching this I …
4
votes
6answers
220 views

How deal with the fact that most decimal fractions cannot be accurately represented in binary?

So, we know that fractions such as 0.1, cannot be accurately represented in binary base, which cause precise problems (such as mentioned here: http://stackoverflow.com/questions/14 …
1
vote
2answers
29 views

Converting representation from decimal to floating point numbers - pitfalls

I'm working on some functionality in a financial application. All numbers are represented as decimals without rounding errors both in the code and in the database. However, I'm hav …
6
votes
4answers
421 views

Conversion of a decimal to double number in C# results in a difference

Summary of the problem: For some decimal values, when we convert the type from decimal to double, a small fraction is added to the result. What makes it worse, is that there can …
0
votes
3answers
342 views

php float calculation 2 decimal point

Hi everyone, Got another math calculation problem again. $a = 34.56 $b = 34.55 $a do some calculation to get this figure $b is doing rounding nearest 0.05 to get this figure w …
0
votes
5answers
195 views

ASP.NET/C# Decimal to 0.00

Hi i got this method, how can i make the decimal to .00 and not .0000 ? :) public static List<Product> GetAllProducts() { List<Product> products = new List< …

1 2 3 4 5 9 next
15 30 50 per page