Added: April/26/2005 at 6:24am | IP Logged
|
|
|
IIS uses connection pooling (as far as I've been told) to optimize database access.
On our site, we've experimented with transactions (using Connection.BeginTrans) for some time, but one major issue is holding us back.
In case an error occurs on the page and we do not rollback or commit the transaction, will this connection still be in transaction mode when returned to the connection pool? Will this connection be given to another process from the pool when requested?
Thanks in advance!
|