What is the difference between Datareader and Dataset?
Explain the DataAdapter.Update() and DataSetAcceptChanges() methods.
Which provider is used to connect ms access, oracle, etc…?
What is the difference between linq and ado.net?
I want to ask u that if i add radio button in ado.net form,and how radion button data insert in SQL2005 Database...
What is datatable in ado.net?
What are the different methods by which we can populate a dataset?
Is ado.net an orm?
What is the current version of entity framework?
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
How can you implement sub data grid in a master datagrid?
Explain the namespaces in which .net has the data functionality class.
Explain how to find the given query is optimised one or not?