Diffference between DataSet and DataTable

  • Thread starter Thread starter Creative Designers
  • Start date Start date
C

Creative Designers

Hi Friends,


Can you tell the difference between Dataset and Datatable....

Dayaa
 
A database contains tables located physically somewhere in a database
structure.
A data set is an in-memory representation of one or more data tables that
have been selected
from a database by means of a statement containing SELECT .......

Adrian.
 
Although Adrian text is right,

A dataset is a kind of wrapper around datatables and datarelations.
(it does much more than to be a wrapper)

The representation of the smallest item can be in vbnet notation which means
brackets in C#

dataset.tables(IndexerOrName).rows(indexer).item(IndexerOrNameOrDataColumn)

I hope this helps,

Cor
 
Back
Top