Answer Posted / sandyni
In ADO.NET, DataTable objects are used to represent the
tables in a DataSet.
A DataTable represents one table of in-memory relational
data; the data is local to the .NET-based application in
which it resides.
A DataTable is a collection of DataRow and DataColumn
objects.
The schema, or structure of a table is represented by
columns and constraints.
You define the schema of a DataTable using DataColumn
objects as well as ForeignKeyConstraint and
UniqueConstraint objects.
| Is This Answer Correct ? | 8 Yes | 7 No |
Post New Answer View All Answers
In how many ways we can retrieve table records count? How to find the count of records in a dataset?
differance between ADO vs ADO.Net?
What is connection pooling and what is the maximum pool size in ado.net connection string?
how we can fire event in databound coulm in datagfrid withot using button?
Which database is the ado.net?
How will you differentiate between ADO (ActiveX Data Object) and RDO (Remote Data Objects)?
How do you merge 2 datasets into the third dataset in a simple manner?
Define the data provider classes that is supported by ado.net?
What two types of data providers does ADO.NET supply? What determines which one you should use?
How would you connect to database using .NET?
What is execute scalar in ado.net?
Difference between sqlcommand and sqlcommandbuilder?
What is disconnected architecture in ado.net?
How to check if the Dataset has records ?
What are the major challenges in accessing data from a database?