Click here to Skip to main content
15,905,232 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have little confusion when use Connected and Disconnected in asp.net please explain with reason...???
Posted
Updated 7-Apr-12 2:04am
v2

Hi use this link to know
http://www.allinterview.com/showanswers/94559.html[^]
Good Luck
 
Share this answer
 
Use Connected model when:

1. The amount of data is huge and it is infeasible to keep in memory.
2. The data is getting changed very frequently such that the in memory representation can get stale quickly.

Use Disconnected model when:

THe data is small
It is not changing frequently or the application can handle the changes nevertheless.
Frequent query to database is either not possible or perhaps is time/resource consuming.
 
Share this answer
 
DEPANDS UPON THE REQUIREMENT :

THE DATA USED QUITE FREQUENTLY & LESS IN SIZE,CAN BE USED IN DISCONNECTED ARCH.

FOR LAGE AMOUNT OF DATA,U SHOULD USE CONNECTED ARCHITECTURE.
 
Share this answer
 
Comments
[no name] 7-Apr-12 7:59am    
but connected have use more traffic on server then how can use it for large amount data

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