G
Guest
I have a SQL table that has a column defined as Sql Data Type decimal(38,15). In case you are wondering, the precision and scope are that large because it contains 'scientific' numbers which require a range of that size
Anyway, if I try to fill a DataSet with a DataAdapter, with a simple "select * from table", I get
System.OverflowException: Conversion overflow
when it gets to a row that has a column over some value (and I'm sure under some value as well)
For instance: "1000000000000000.000000000000000" produces the erro
Does anyone know what this value is? And is there anyway around this, or is it simply the case that .NET DataSet can't handle a Sql Data Type decimal with a precision and/or scope of that size
TI
Anyway, if I try to fill a DataSet with a DataAdapter, with a simple "select * from table", I get
System.OverflowException: Conversion overflow
when it gets to a row that has a column over some value (and I'm sure under some value as well)
For instance: "1000000000000000.000000000000000" produces the erro
Does anyone know what this value is? And is there anyway around this, or is it simply the case that .NET DataSet can't handle a Sql Data Type decimal with a precision and/or scope of that size
TI