Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Temporary tables on web

Status
Not open for further replies.

SBGibson

Programmer
Apr 18, 2001
125
IT
Hi guys,

how you solved problems of using temporary data storage in a multiuser-monoprocedure software such as an asp.net application?
I mean...in a win front-end application I can use a local database where downloading records from server, performing many operations and then use the result for printing or something else.
How we can do it in a asp.net application? Temporary tables on the server? A multipurpose table with userid in a field, datasets (but we cannot use sql statements on recordsets tables)....something else?

What's your ideas?

Tnx :)


Stevie B. Gibson
 
use datasets and dataviews, and keep them in the applicationstate. i use a serializable class to manage the data and make for easy in-memory storage
 
And for SQL commands such as UPDATE, GROUP BY etc you have developped some methods in the class that emulate them scrolling through the datarows?

Stevie B. Gibson
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top