Click here to Skip to main content
15,898,538 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Pls solve my problem .In which place we use connected Architecture
Posted

1 solution

Ideally, in the Web based applications you should use connected architecture because web applications are stateless. They gets request from browser, executes, response and forgets (Releases memory). So, there is no point in retaining data (Using DataSet in disconnected strategy).

If you have a desktop based application, the disconnected data strategy suits better. Desktop application's are not stateless (Means, the GUI and Data remains in the same runtime) so, you can store data in the DataSets and serves from their. Also, you can change data in the DataSet and later, save all in the database in one single call.

However, these are the basic rules, and these don't imply that you can't override these rules. Depending upon your particular situation and need, you can of course trade off between these choices.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900