Click to See Complete Forum and Search --> : MTS and transactions
msdnexpert
Sep 27th, 2000, 11:04 PM
Dear all,
How different is the transaction environment of MTS from those provided by databases such as Oracle and SQL-Server. I would like to know why and when one should use MTS. Thanks in advance.
André
Sep 28th, 2000, 02:15 AM
Hi there, here is something to get you started:
MTS is much more than a transaction monitor.
You might need to do an action that involves multiple read writes to the database as well as calculations. This action should commit if it succeeds or abort if a part of the action fails. This is done by MTS.
Two-face commit is also a feature of MTS.
MTS gives you connection pooling, hence you will reuse open connections to the database.
MTS in win2000 is called COM+, and here you can also do object pooling.
MTS is the middle tier environment that will help your site to be scalable. YOu just have to remember to program stateless. No session variables!
I hope this braindump helps a little bit.
André
msdnexpert
Sep 28th, 2000, 06:12 AM
Thanx Andre
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.