Dataset or ado.net
-
Hi, Just wondering to know, between ADO.net and Dataset which one is better for working with database. Could you please give me a link for beginner? thanks a lot
-
Hi, Just wondering to know, between ADO.net and Dataset which one is better for working with database. Could you please give me a link for beginner? thanks a lot
You are trying to compare apples to oranges. ADO.NET provides consistent access to data sources such as Microsoft SQL Server, as well as data sources exposed through OLE DB and XML. Data-sharing consumer applications can use ADO.NET to connect to these data sources and retrieve, manipulate, and update data. http://msdn.microsoft.com/en-us/library/h43ks021(VS.71).aspx[^] The DataSet object is central to supporting disconnected, distributed data scenarios with ADO.NET. http://msdn.microsoft.com/en-us/library/zb0sdh0b(v=VS.71).aspx[^]
I know the language. I've read a book. - _Madmatt