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
in 1.x there used to be things DataTables couldn't do which DataSets could (don't remember exactly what). All that was changed in 2.x. My guess is that's why a lot of examples still use DataSets. DataTables should be quicker as they are more lightweight. If you're only pulling a single resultset, its your best choice between the two.