| Doc Type | Tips & Tricks |
| Email Setting | Make Public |
| Email Address | steve dot robinson at notes411 dot com |
| Keep informed? | Yes |
| Author | Steven Charles Robinson |
| Company Name | Notes411 |
| Category | .NET, ADO.NET |
| Modified | 08/09/2006 11:15:21 |
| Subject | ADO.NET basic overview of Objects. A Diagram that shows the relationship between Data Provider, DataSet, DataTable, DataColumns, DataRows and DataRelation objects. |
ADO.NET basic overview of Object.
A .NET Data Provider mediates interaction between the program and the database.
The DataSet object contain Zero or more DataTable objects, which represent
tables in the database.
The structure of a DataTable is defined by DataColumns collection which
enumerates the columns in a table. A DataTable also contains DataRows,
which contain the actual data of the DataSet. DataColumns and DataRows
make up the schema of the table.
|