Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What are the various objects in Dataset
What are the various objects in Dataset ?
✍: Guest
Dataset has a collection of DataTable object within the Tables collection. Each DataTable
object contains a collection of DataRow objects and a collection of DataColumn objects.
There are also collections for the primary keys, constraints, and default values used in
this table which is called as constraint collection, and the parent and child relationships
between the tables. Finally, there is a DefaultView object for each table. This is used to
create a DataView object based on the table, so that the data can be searched, filtered or
otherwise manipulated while displaying the data.
Note :- Look back again to the main diagram for ADO.NET architecture for visualizing
this answer in pictorial form.
2007-10-24, 5235👍, 0💬
Popular Posts:
What is the quickest sorting method to use? The answer depends on what you mean by quickest. For mos...
How can I implement a variable field width with printf? That is, instead of something like %8d, I wa...
What is V model in testing? V model map’s the type of test to the stage of development in a project....
What is difference between ADPATCH and OPATCH ? # ADPATCH is utility to apply ORACLE application Pat...
How was XML handled during COM times? During COM it was done by using MSXML 4.0. So old languages li...