attempting to update my database using this code.
TestingTableAdapter
public
{
InitializeComponent();
testingDataSet_TestingDataTableBindingSource.DataSource = tAdapter.GetData();
}
this
testingDataSet_TestingDataTableBindingSource.EndEdit();
My database and dataset was created in another project file, which i added reference to this project. Basically attempting to layer this, but for some reason it will not update the database. Im wondering if it's because its using another dataset thats in the other project? Im sure the code is right, but I guess i don't have a clear understanding of whats actually happening here.
Any ideas of what my problem is?