Forum Post: RE: .Net and subtransactions

  • Thread starter Thread starter Thomas Mercer-Hursh
  • Start date Start date
Status
Not open for further replies.
T

Thomas Mercer-Hursh

Guest
In particular, you should distinguish what happens in your code from what happens in the database. You can happily provide various kinds of roll backs, restarts, undos, etc. in your code dealing with local variables and then when you are completely done send a whole set of clean data to the database to commit as a single transaction. You can also commit pieces if that makes business sense to you. Just don't mush the two together.

Continue reading...
 
Status
Not open for further replies.
Back
Top