How to set Session.InTransaction := False ? I know Session.InTransaction is Read_only property. I just want to end the session in Transaction mode.
mycode:
Session.StartTransaction
update query
Session.commit
After I do Session.commit, the Session.InTransaction is still true. I just don't understand why.
Thanks