From:
<car...@te...> - 2004-03-30 14:15:44
|
Hello: > I hope this can help. I have done a little test and it's running fine for me, heres is my test case: FbConnection connection = new FbConnection(connectionString); connection.Open(); string sql = "SELECT * FROM TEST"; FbDataAdapter adapter = new FbDataAdapter(sql, connection); FbCommandBuilder builder = new FbCommandBuilder(adapter); FbCommand i = builder.GetInsertCommand(); FbCommand d = builder.GetDeleteCommand(); FbCommand u = builder.GetUpdateCommand(); connection.Close(); -- Best regards Carlos Guzmán Álvarez Vigo-Spain |