views:

39

answers:

3

Possible Duplicate:
What represents a double in sql server?

Is there an exact equivalent for the .NET Double type in SQL Server? Failing that, is there one which gives a good approximation?

EDIT: It looks like this link gives the most definitive answer: Mapping CLR Parameter Data

A: 

It would be float(53):

The SQL Server float[(n)] data type complies with the ISO standard for all values of n from 1 through 53. The synonym for double precision is float(53).

Darin Dimitrov
+2  A: 

Already discussed HERE.

Incognito
Agreed. I missed this one :)
Thomas Bratt
A: 

Use float. See Microsofts SQL-CLR Mapping for other types as well.

Marcel