Answer Posted / badmoon
The DataTable is an in-memory representation of a block of
data. We can create our own tables in code using a DataSet
and the types defined in the System.Data.OleDb or
System.Data.SqlClient namespaces. The following are the
core properties that are used while creating a DataTable.
CaseSensitive: Indicates whether string comparisons in
the table are case-sensitive or not.
ChildRelations: Returns the collection of child relations
of the DataTable (if any).
Columns: Returns the collection of columns that belong to
this table.
Constraints: Gets the constraints maintained by this table.
DataSet: Gets the dataset that contains this table.
DefaultView: Gets a customized view of the table that may
include a filtered view or a cursor position.
MinimumCapacity: Gets/Sets the initial number of rows in
the table.
ParentRelations: Gets the collection of parent relations
for this table.
PrimaryKey: Gets/Sets a primary key for the table.
Rows: Returns the collection of rows that belong to this
table.
TableName: Gets/Sets the name of the table.
| Is This Answer Correct ? | 18 Yes | 8 No |
Post New Answer View All Answers
What is aggregate root?
How to pass values into a datatable?
What is the difference between Dataset. clone and Dataset.copy?
How can we check that some changes have been made to dataset since it was loaded?
What is datatable in ado.net?
What is Data view?
Explain the difference between an ado.net dataset and an ado recordset?
Explain the difference in record set and dataset?
What is datasource in ado.net?
Is ado.net an orm?
Compare Data Reader & Dataset in ado.net?
What is ado rdo dao in visual basic?
What is ole in vb?
What is ole data type?
Does entity framework use ado.net?