Application wide transaction scope?!

  • Thread starter Thread starter Raj
  • Start date Start date
R

Raj

Any ideas about using single transaction across pages of an application?

Thank you

Regards
Raj
 
Raj said:
Any ideas about using single transaction across pages of an application?

Thank you

Regards
Raj

Yes.
Do them as logic transactions rather than database transactions.
IE hold your data in memory in a collection of some sort - a list or two
lists or a dataset.
Then write them to the database in one go.
Holding a database transaction open across pages is a big NO on database
systems.
 
Back
Top