what are the properties of datatable?

 Posted by Nagasundar_Tn on 11/29/2012 | Category: C# Interview questions | Views: 3313 | Points: 40
Answer:

DataTable is a class that contains data in row column format. Some of the properties of datatable are


TableName         -- Denotes the name of the DataTable.

DataSet -- Gets the dataset for the table.
DefaultView -- Gets the view of datatable with RowFilter condition etc.,
ROWS -- Get all rows of the table.
Column -- Denotes all columns of the table
ChildRelation -- Gets the collection of child relations for the data table
ParentRelation -- Gets the collection of parent relations for the data table
Constrints -- Gets the collection of constraints maintained by the table
PrimaryKey -- Gets or Sets an array of columns that function as primary key for
the table.


Apart from this we have the properties such as

Extended Properties, HasErrors, IsInitialized, locale, MinimumCapacity, Prefix, RemotingFormat, Site


Asked In: SRA Systems | Alert Moderator 

Comments or Responses

Login to post response