|
-
Feb 13th, 2004, 10:25 AM
#1
Thread Starter
Junior Member
DATASET and RECORDSET
hi..
is DATASET and RECORDSET the same thing..if not then wat are the difference..?
Arvinder Gill
-
Feb 13th, 2004, 12:32 PM
#2
Addicted Member
MSDN - Comparison of ADO.NET and ADO
A recordset looks like a single table. If a recordset is to contain data from multiple database tables, it must use a JOIN query, which assembles the data from the various database tables into a single result table.
In contrast, a dataset is a collection of one or more tables. The tables within a dataset are called data tables; specifically, they are DataTable objects. If a dataset contains data from multiple database tables, it will typically contain multiple DataTable objects. That is, each DataTable object typically corresponds to a single database table or view. In this way, a dataset can mimic the structure of the underlying database.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|