What is a datatable?

Answer Posted / abhishek

A DataSet is made up of a collection of tables, relationships, and constraints. 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, but can be populated from a data source such as Microsoft SQL Server using a DataAdapter For more information, see Populating a DataSet from a DataAdapter (ADO.NET).

The DataTable class is a member of the System.Data namespace within the .NET Framework class library. You can create and use a DataTable independently or as a member of a DataSet, and DataTable objects can also be used in conjunction with other .NET Framework objects, including the DataView. You access the collection of tables in a DataSet through the Tables property of the DataSet object.

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. The columns in a table can map to columns in a data source, contain calculated values from expressions, automatically increment their values, or contain primary key values.

In addition to a schema, a DataTable must also have rows to contain and order data. The DataRow class represents the actual data contained in a table. You use the DataRow and its properties and methods to retrieve, evaluate, and manipulate the data in a table. As you access and change the data within a row, the DataRow object maintains both its current and original state.

You can create parent-child relationships between tables using one or more related columns in the tables. You create a relationship between DataTable objects using a DataRelation. DataRelation objects can then be used to return the related child or parent rows of a particular row.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is ado.net in vb net?

499


can we create synonymn in ms access,sql server,my sql if so explain me with example

1577


Why edit is not possible in repeater?

520


What are the uses of Stored Procedure?

551


What is the difference between oledb sql server and oledbdotnet provider?

500






What are the namespaces used in ADO.Net to connect to a database?

594


What is data relation in ado.net?

516


How many major types of connection objects in ADO.NET?

588


What is a datagridview?

512


Explain what are acid properties?

536


What is connection string?

525


How do we use stored procedure in ADO.NET and how do we provide parameters to the stored procedures?

566


What is ado and dao?

530


What are the advantages and drawbacks of using ado.net?

621


Explain the difference in an abstract class and an interface?

501