0
votes
4answers
100 views
SQL Server CONVERT(NUMERIC(18,0), ‘’) fails but CONVERT(INT, ‘’) succeeds?
PRINT CONVERT(NUMERIC(18,0), '')
produces Error converting data type varchar to numeric.
However,
PRINT CONVERT(INT, '')
produces 0 without error...
Question: Is there some SQL Server …
0
votes
1answer
84 views
Silverlight XAML Binding — Decimal to Double
I've got some Columns in a DataGridView that have their Binding property set to something like the following:
Binding="{Binding NetPrice}"
The problem is that this NetPrice field is a Decimal type …
