Re: [DOTNET] ADO.NET Datasets

2002-06-25 Thread Sandeep Kumar
Hi Avinash Datasets are the cache on client side and it is useful if you want that your application must't ask the same information again and again from the server. What you can do is to cache it on the client side and read the cache when you need the information again. You can use the data ad

Re: [DOTNET] ADO.NET Datasets

2002-06-25 Thread Sandeep Kumar
block expensive resources while you don't need them. Sandeep -Original Message- From: Patrick Steele [mailto:[EMAIL PROTECTED]] Sent: Dienstag, 25. Juni 2002 17:05 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] ADO.NET Datasets [NOTE: This list is closing 7/1/2002. This question should p

Re: [DOTNET] ADO.NET Datasets

2002-06-25 Thread Patrick Steele
[NOTE: This list is closing 7/1/2002. This question should probably go to DOTNET-CLR]. Datasets are disconnected, in-memory representations of data. The advantage is that you *don't* hold a connection (an expensive resource) while doing something with the data. With a dataset, you 1) connect