Får följande fel när jag försöker fylla ett dataset med data från en AS/400 DB2. Testa att definiera fältet i ditt Dataset som String? Jag har testat följande. Är det så här du menar? Ja, eller gör ett typat dataset i designern tänkte jag.The iDB2Decimal value is too large to fit into a Decimal. Use ToString() to retr
<code>
The iDB2Decimal value is too large to fit into a Decimal. Use ToString() to retrieve the value instead.
Stack Trace:
[OverflowException: The iDB2Decimal value is too large to fit into a Decimal. Use ToString() to retrieve the value instead.]
IBM.Data.DB2.iSeries.iDB2DecNumeric.get_Value()
IBM.Data.DB2.iSeries.iDB2Decimal.get_Value()
IBM.Data.DB2.iSeries.MPDataConverter.getDotNetObject(MpDcData& ds)
IBM.Data.DB2.iSeries.iDB2DataReader.GetValues(Object[] values)
System.Data.Common.SchemaMapping.LoadDataRow(Boolean clearDataValues, Boolean acceptChanges)
System.Data.Common.DbDataAdapter.FillLoadDataRow(SchemaMapping mapping)
System.Data.Common.DbDataAdapter.FillFromReader(Object data, String srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords, DataColumn parentChapterColumn, Object parentChapterValue)
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords)
System.Data.Common.DbDataAdapter.FillFromCommand(Object data, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
Inventering.AS400.Conecta400(String AS400, String vBiblio, String usuario, String clave, String vSQL400) in c:\inetpub\wwwroot\Inventering\AS400.aspx.vb:48
Inventering.AS400.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\Inventering\AS400.aspx.vb:32
System.Web.UI.Control.OnLoad(EventArgs e)
System.Web.UI.Control.LoadRecursive()
System.Web.UI.Page.ProcessRequestMain()
</code>
Hur använder jag tostring för att lösa detta. Antar att det decimal värde som hämtas blir för stort för datasetet eller nått sånt.
/ESv: The iDB2Decimal value is too large to fit into a Decimal. Use ToString() to
Sv:The iDB2Decimal value is too large to fit into a Decimal. Use ToString() to
<code>
Dim myTable As New DataTable("data")
myDataSet.Tables.Add(myTable)
Dim colName As String
myTable.Columns.Add("H1CONO", GetType(System.String)) 'Till String
</code>Sv: The iDB2Decimal value is too large to fit into a Decimal. Use ToString() to
Som du sedan fyller. String borde klara att ta emot allt.
eventuellt gillar inte adaptern att det är olika datatyper.
(det är en ren gissning om det verkligen kommer att funka.. )