What value in the SqlDbType
enumeration should I use for the numeric
T-SQL data type?
views:
259answers:
2
+4
A:
Decimal.
See this page: http://msdn.microsoft.com/en-us/library/system.data.sqltypes.aspx
frou
2009-10-21 22:56:45
Thanks for the reference.
Michael Kniskern
2009-10-21 23:11:58
Note that the above link shows `SqlType` mappings, not `SqlDbType`, although in this case the mapping is the same, `NUMERIC` to `Decimal`. Here are the full mappings: http://msdn.microsoft.com/en-us/library/cc716729.aspx
LukeH
2009-10-22 09:12:41