I currently use a DataTable to get results from a database which I can use in my code.
However, many example on the web show using a DataSet instead and accessing th
When you are only dealing with a single table anyway, the biggest practical difference I have found is that DataSet has a "HasChanges" method but DataTable does not. Both have a "GetChanges" however, so you can use that and test for null.