what is typed and untyped dataset
Answers were Sorted based on User's Feedback
Typed vs. Untyped Datasets
A DataSet can be Typed or Untyped. The difference between
the two lies in the fact that a Typed DataSet has a schema
and an Untyped DataSet does not have one. It should be
noted that the Typed Datasets have more support in Visual
studio.
Is This Answer Correct ? | 34 Yes | 3 No |
Answer / parvez borkar
Typed Dataset provide compile time type checking. Also it
provides the names of the Columns of the types we are using
for that typed data set. This is something we dont get in
the normal datasets.
Is This Answer Correct ? | 20 Yes | 7 No |
We can generate Typed Dataset based on a single table or
multiple tables which are related by using primary key and
foreign key relationships through visual stdio which
generates a xsd file. This is a strongly typed in-memory
cache of data.
Untyped dataset is one which is filled/generated using a
DataAdapter and a command object.
Is This Answer Correct ? | 15 Yes | 3 No |
can we change the data in dataset? if yes what is the process?
What does executenonquery () method return?
How to maintain the relation between two tables in ADO.NET?
0 Answers Petranics Solutions,
What is ado oledb and odbc?
How do we invoke queries from the application ?
Can we connect two dataadapters to same data source using single connection at same time?
What are all the different methods under sqlcommand?
Describe datareader object of ado.net with example.
What is defaultview in datatable?
What is ado.net components?
What is ole db and odbc?
Can we bind one datareader wid two dropdown list?