G
Guest
I'm new to c#.
I am trying to insert or update data to my tables, and in the debug mode
everithig looks ok. when i exit and look in the database all the update or
insert did not take effect. i'm using Visual c# 2005 express and SQl 2005
express.
I tried to insert a button with this code :
private void Update_button_Click(object sender, EventArgs e)
{
dutyTBBindingSource.EndEdit();
dutyTBTableAdapter.Update(plugaDBDataSet.DutyTB);
}
thanks
Ilan
I am trying to insert or update data to my tables, and in the debug mode
everithig looks ok. when i exit and look in the database all the update or
insert did not take effect. i'm using Visual c# 2005 express and SQl 2005
express.
I tried to insert a button with this code :
private void Update_button_Click(object sender, EventArgs e)
{
dutyTBBindingSource.EndEdit();
dutyTBTableAdapter.Update(plugaDBDataSet.DutyTB);
}
thanks
Ilan