From: <car...@te...> - 2002-11-22 12:01:41
|
Hello: I want to implement Firebird 1.5 savepoints to the .Net Data Provider i need to know how it works and where can i find the implementation on firebird sources for try to implement it on the C# GDS implementation. Here is an example set by Jojakim Stahl to the Net Provider list, on how this works on Sql Server, i want o know if savepoints on firebird 1.5 works similar to this: BeginTransaction("Point0"); DBOps... Save("Point1"); DBOps... Save("Point2"); DBOps... Rollback("Point1"); // Cancels all DBOps made since Save("Point1") DBOps... Save("OtherThings"); Rollback("Point0"); // Cancels complete transaction Best regards Carlos Guzmán Álvarez Vigo-Spain |