While generate dataset, I am getting error!

dsuraj

New member
Joined
Oct 27, 2007
Messages
3
Programming Experience
Beginner
When i am trying to genarate dataset (I am using sqldataadapter), I am getting the following error message,

---------------------------
Generate Dataset
---------------------------
There were problems generating DataBinding.DataSet1. To resolve this problem, build the project, fix any errors, and then generate the dataset again.
---------------------------
OK
---------------------------


And when i tried to preview dataset, it is giving following error
---------------------------
Microsoft Development Environment
---------------------------
Visual Studio could not create an instance of DataBinding.DataSet1.
Confirm the class name is a valid DataSet class.
---------------------------
OK
---------------------------

Please help me for this problem.
Thanks in advance.

Regards,
Suraj
 
Check that none of your column names are the same as vb reserved words or namespaces. I know for sure that trying to add a table with a column called SYSTEM shafts the designer up completely, because it starts getting confused between the column and the SYstem namespace
 
Back
Top