I have a DB2 Stored Procedure (not ODBC) that connects & executes fine via an OleDbDataAdapter, but when the ASP.NET page tries to do a Fill, I get the "Object must implement IConvertible error". Does anyone know what this problem might be? I am guessing that it must involve the DB2 data types - if so where would IConvertible be used? This error occurs whether I try to .Fill to a DataTable, DataSet or an XML DataSet. It worked fine with SQL Server data though.
dsXX1.Clear();
objDataAdapter.Fill(dsXX1); //Abends here IConvertible
DataGrid1.DataBind();
Any thoughts or leads on this would be greatly appreciated. Thanks.
dsXX1.Clear();
objDataAdapter.Fill(dsXX1); //Abends here IConvertible
DataGrid1.DataBind();
Any thoughts or leads on this would be greatly appreciated. Thanks.