tags:

views:

1978

answers:

2

what are advantages & disadvantages of connected & disconnected Architecture (database) over one another in asp.net ?

+1  A: 

asp.net is a server side technology designed for a server to process requests for pages. The very nature of ASP.NET requires a connected model.

Could you clarify what you mean by "disconnected"?

lomaxx
+1  A: 

With regards to ASP.NET, a "disconnected" architecture usually refers to one in which data is downloaded to the ASP.NET app's memory in infrequent bulk requests and stored in the cache for later processing. This avoids frequent trips to the database, thus eliminating one of the major I/O obstacles. In a site where data is frequently queried but not updated, this can be a significant performance improvement, if your server has the memory to support the caching of the data.

There is of course the possibility that you're referencing the use of something like Google Gears, but I haven't heard of that being used much in the ASP.NET world. Anything's possible, I suppose.

Chris
Thank you. Your answer indirectly had tell me why I was missing the point about disconnected in this tutorial http://aspalliance.com/1866_Building_Reports_using_ASPNET_and_Crystal_Reports__Part_3__An_Invoice_Report_Using_Disconnected_Data.all
Alex. S.