[Firebird-net-provider] Problem with FbDataAdapter

2006-11-02 Thread mn
FbDataAdapter does not handle correctly Update method because of   protected override int Update(DataRow[] dataRows, DataTableMapping tableMapping) implementation   Here is the case:   we have a table named zones created as follows   CREATE TABLE zones ( zone_id   INTEGER  NOT NULL, /* pk

Re: [Firebird-net-provider] Problem with FbDataAdapter and Update

2006-04-13 Thread Carlos Guzmán Álvarez
Hello: What can I do, so that this function works correctly? Please send a test case to my private email including a test database. -- Carlos Guzmán Álvarez Vigo-Spain http://carlosga.blogspot.com/ "When you don't code, you tend to become one of those architects who thinks everything is

[Firebird-net-provider] Problem with FbDataAdapter and Update

2006-04-12 Thread Guido Franke
Hello, I wrote the following function: public void SaveChanges(DataTable table) { FbConnection myConn = new FbConnection(this.ConnectionString); myConn.Open(); FbTransaction myTxn = myConn.BeginTransaction(); FbDataAdapter myDataAdapter = new FbDataAdapter(new FbCommand(string.Format("S