Connecting Tech Pros Worldwide Help | Site Map

Database problem in C#

Newbie
 
Join Date: Oct 2008
Posts: 2
#1: Oct 28 '08
I am building an application for a football club with a database and I have this problem:

Expand|Select|Wrap|Line Numbers
  1.  private void finansijeBindingNavigatorSaveItem_Click(object sender, EventArgs e)
  2.         {
  3.             this.Validate();
  4.             this.finansijeBindingSource.EndEdit();
  5.             this.tableAdapterManager.UpdateAll(this.fudbalski_klubDataSet1);
  6.         }
When I run this, and either add, delete or edit the data, then save and close the form and go back into the application, the data was not saved.

Does anyone know how to fix this?

Thanks!
ck9663's Avatar
Expert
 
Join Date: Jun 2007
Posts: 1,925
#2: Oct 29 '08

re: Database problem in C#


Could you post the SQL part?

-- CK
Reply