Question Add a DataTable to the current DataSet

kfirba

Well-known member
Joined
Dec 29, 2012
Messages
77
Programming Experience
1-3
Hello!

I have a Database with 5 tables.
At the beggining, I used only 4 tables, and now I see that I need another table, I need 5. I have added the fifth table to the Database, but, how do I add it to the current DataSet that I have in my program?
I don't want to re-create my whole program cause of that.. of hold another Dataset instance because I need the connection between the tables.

Is it possible just adding to the current .xsd file the another table that I want?

Thanks!
 
Presumably you used the Data Source Wizard to generate a typed DataSet. In that case, open the Data Sources window, select your Daat Source and then click the button to re-run the configuration wizard.
 
Presumably you used the Data Source Wizard to generate a typed DataSet. In that case, open the Data Sources window, select your Daat Source and then click the button to re-run the configuration wizard.
Oh, thanks a lot!
That's exactly what I need!

Have a nice day!
 
Back
Top