From: Carlos G. A. <car...@te...> - 2003-06-03 14:56:39
|
HEllo: > I'm using Release of FB.NET 1.0 provider. Database - firebird 1.5 (RC3), Dialect 1. I'm using this code as test case and all is working as expected: FbConnection con = new FbConnection(connectionString); con.Open(); FbTransaction tran = con.BeginTransaction(); FbCommand command = new FbCommand(@"SELECT * FROM TEST_TABLE_01", con, tran); FbDataAdapter ad = new FbDataAdapter(command); DataSet ds = new DataSet(); ad.Fill(ds, "TBL"); FbCommandBuilder b = new FbCommandBuilder(ad); b.QuotePrefix = String.Empty; b.QuoteSuffix = String.Empty; ad.Update(ds, "TBL"); // <--- Exception goes here con.Close(); -- Best regards Carlos Guzma'n A'lvarez Vigo-Spain "No tengo dones especiales.So'lo soy apasionadamente curioso" Albert Einstein, cienti'fico. |