2011/11/1 Eli <[email protected]>: > StandardDeviation is 3.40282001837566e+38. > > Can anyone think of a reason why this would be allowable to be written > to the DB, but not readable? >
According to http://msdn.microsoft.com/en-us/library/364x0z75%28v=VS.90%29.aspx decimal have a range up to 10^28. So probably you used something other than decimal, such as float, double or string to store it. /Oskar -- You received this message because you are subscribed to the Google Groups "nhusers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/nhusers?hl=en.
