Hey
I need to store data in a database.
I actually don't really need to get data from it.
I created a local database in VS2010.
With some tables, I added the database as a new data source.
Now I'm stuck. I don't know how to insert data to it.
I tried:
testDataSet.Customer.Rows.Add(new Object[] {"Smith", 2}); //Name, ID
But I don't see any data appearing to it.
I haven't found any logical tutorials. What is database Explorer? Does it just show the tables or can I see the data in the rows? what is the .xsd file etc.?
I am familiar with MySQL and quering it.
Is there something like this in c#?
Thanks for your time