Re: [Firebird-net-provider] Cannot update the data on database

2005-11-07 Thread Arn
[EMAIL PROTECTED] wrote: Hello: FirebirdSql.Data.Firebird.FbTransaction Tran = Connessione.BeginTransaction(); Could you check here the HasChanges property of the DataSet please ?? FbDataAdapter1.Update( fbDataset1 ); Tran.Commit();

Re: [Firebird-net-provider] Cannot update the data on database

2005-11-07 Thread Arn
Hi. Sorry to bother the List, but I cannot resolve what seems to me a too much simple issue. this is a NOT WORKING snippet: private void Grid1_UpdateCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e) { fbConnection1.Open();

Re: [Firebird-net-provider] Cannot update the data on database

2005-11-06 Thread Arn
Hi Arn, I think your mistake is that you call the AcceptChanges()-Method from your DataGrid BEFOR you update the data! In this case the Update()-Methode can't find any changes in your DataGrid because the RowState Property of all DataRows was set to unchanged. Call first the Update()-Methode