From:
<car...@te...> - 2004-03-06 13:34:20
|
Hello: > adapter.Update(table); // EXCEPTION HERE !!!!!!!!!!!!!!!! This will call FbCommand.ExecuteReader method, the provider will transform the command text into: select * from "TEST_DELETE" As TEST_DELETE has no return values firebird will throw an exception. You can try using EXECUTE PROCEDURE sintax, or returning at least one value ( for example the number of rows affected ;) ) -- Best regards Carlos Guzmán Álvarez Vigo-Spain |