Major Error Needing Major Help!!!

jesus4u

Well-known member
Joined
Feb 13, 2003
Messages
47
My friends computer is reporting this error when trying to fill a DataSet. All was working fine until he installed the sample PetShop project from Microsoft. Anybody have a CLUE on HOW to fix? HE cant run ANY projects that connect to SQL.

Server Error in /DataListDemo Application.
--------------------------------------------------------------------------------

ResourcePool is not supported on the current platform.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.PlatformNotSupportedException: ResourcePool is not supported on the current platform.

Source Error:

Line 77: SqlDataAdapter da = new SqlDataAdapter("Select * From Titles", conn);
Line 78: DataSet ds = new DataSet();
Line 79: da.Fill(ds, "title_record");
Line 80: DataList1.DataSource = ds;
Line 81: DataList1.DataBind();

 
Back
Top