Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is typed and untyped dataset

Answers were Sorted based on User's Feedback



what is typed and untyped dataset..

Answer / surjit

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

what is typed and untyped dataset..

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

what is typed and untyped dataset..

Answer / kiranmadiraju

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

Post New Answer

More ADO.NET Interview Questions

How to add a javaScript function in a datagrid?

0 Answers   C DAC, CDAC,


How to add a check box or a dropdown list to a column in a datagrid?

0 Answers  


How can we add relation between tables in a dataset?

0 Answers  


What are the core objects of ADO.NET?

0 Answers  


Which is faster ado.net or linq?

0 Answers  


What is disconnected architecture in ado.net?

0 Answers  


What is openquery?

0 Answers  


what is Sql Native Client?

5 Answers   Gantec Solutions,


What is the difference between sqldatareader and sqldataadapter?

0 Answers  


How will you fill the gridview by using datatable object at runtime?

0 Answers  


How to add an aggregate column?

0 Answers  


OleDbDataAdapter ole=new OleDbDataAdapter(new OleDbCommand ("select * from login",oleDbConnection1)); OleDbCommandBuilder cmd=new OleDbCommandBuilder(ole); ole.Fill(dataSet11,"login"); DataRow drow=dataSet11.Tables ["login"].NewRow(); drow[0]=textBox1.Text; drow[1]=textBox2.Text; drow[2]=textBox3.Text; dataSet11.Tables["login"].Rows.Add (drow); ole.UpdateCommand=cmd.GetUpdateCommand(); ole.Update(dataSet11,"login"); MessageBox.Show("one row added"); this gives exception.how to solve it

1 Answers   Nimaya,


Categories