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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top