Scoble and zombies
Three important news for this Friday:
- I've been Scobleized
- This is my post number 199. Wow! I opened this weblog one year ago, that makes almost 200 posts plus some articles.
- I spotted zombies in the framework!
This is from SqlTransaction.Rollback:
public void Rollback() { if (sqlConnection == null) throw ADP.TransactionZombied(this); try { sqlConnection.ExecuteTransaction(
"IF @@TRANCOUNT > 0 ROLLBACK TRANSACTION",
"RollbackTransaction"); Zombie(); } catch (object obj1) { if ((_sqlConnection != null) && (GetServerTransactionLevel() == 0)) Zombie(); if (!_disposing) throw; } }
Spotted with the Reflector.