What is a serialized object?
What is serialization and de-serialization in .net? How can we serialize the dataset object?
How do I delete a row from a DataTable?
What are the two fundamental objects in ADO.NET?
describe about the ado.net object model
What is the difference between linq and ado.net?
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
What is sqldatasource?
Which is faster datareader or dataadapter?
What is difference between dataset and datatable?
What provider ado.net use by default? Explain the role of data provider in ado.net? What is the role of data provider in ado.net?
How you will set the datarelation between two columns?
What is an orm, and why would you use one instead of plain old ado.net?