Tagged Questions

0
votes
3answers
81 views

session.BeginTransaction() and transaction.Commit()

Hello there, I am new to Nhibernate, so my query may seem trivial to you. We generally embed data operation code inside using (var session = sessionFactory.OpenSession()) { us …
9
votes
3answers
481 views

Why does this Perl BEGIN block act differently in the debugger?

I have some Perl code that runs fine outside the debugger: % perl somefile.pl but when I run it inside the debugger: % perl -d somefile.pl it behaves differently. The files …