Dataset and Recordset
C#
2
Posts
2
Posters
0
Views
1
Watching
-
A
DataSet
is a disconnected recordset. All the data is contained in theDataSet
so you don't need to fetch from the server again. This makes serialization (either to a file or for Web Services / Remoting) easy, as well as using diffgrams (change records in aDataSet
) to update a data source using aDataAdapter
( or handling it yourself :eek: ). See the section on ADO.NET in the .NET Framework SDK for more information.Microsoft MVP, Visual C# My Articles