Howdy, I have a DataRow pulled out of a DataTable from a DataSet. I am accessing a column that is defined in SQL as a float datatype. I am trying to assign that value to a local variable (c# float datatype) but am getting an InvalidCastExecption

DataRow exercise = _exerciseDataSet.Exercise.FindByExerciseID(65);
_AccelLimit = (float)exercise["DefaultAccelLimit"];

Now, playing around with this I did make it work but it did not make any sense and it didn't feel right.

_AccelLimit = (float)(double)exercise["DefaultAccelLimit"];

Can anyone explain what I am missing here?

link|improve this question

74% accept rate
feedback

5 Answers

up vote 25 down vote accepted

A SQL float is a double according to the documentation for SQLDbType.

link|improve this answer
1  
They are similar but certainly not equivalent. Double supports values of +Infinity, -Infinity, and NaN - as per the IEEE specification, but SQL float most definitely does not. and will throw overflow errors. – Alain yesterday
feedback

A float in SQL is a Double in the CLR (C#/VB). There's a table of SQL data types with the CLR equivalents on MSDN.

link|improve this answer
1  
They are similar but certainly not equivalent. Double supports values of +Infinity, -Infinity, and NaN - as per the IEEE specification, but SQL float most definitely does not. and will throw overflow errors. Hopefully MSDN will add this to their info pages. – Alain yesterday
feedback

The float in Microsoft SQL Server is equivalent to a Double in C#. The reason for this is that a floating-point number can only approximate a decimal number, the precision of a floating-point number determines how accurately that number approximates a decimal number. The Double type represents a double-precision 64-bit floating-point number with values ranging from negative 1.79769313486232e308 to positive 1.79769313486232e308, as well as positive or negative zero, PositiveInfinity, NegativeInfinity, and Not-a-Number (NaN).

link|improve this answer
feedback

SQL Server's float is equivalent to .NET's System.Double.

This means that cast to float may lose precision due to rounding of the double value. Would be better to change type of _AccelLimit field to double.

link|improve this answer
Not equivalent. See above comments. the world must know – Alain yesterday
feedback

Ad normally you would never want to use float in SQL Server (or real) if you plan to perform math calculations on the data as it is an inexact datatype and it will introduce calculation errors. Use a decimal datatype instead if you need precision.

link|improve this answer
2  
It is OK for most math and engineering calculations. Now, financial and accounting calculations are, of course, different. – Constantin Sep 26 '08 at 12:33
feedback

Your Answer

 
or
required, but never shown

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