What does adodb stand for?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More ADO.NET Interview Questions

Explain the difference between data reader and data set?

0 Answers  


What is meant by executenonquery?

0 Answers  


Explain the DataAdapter.Update() and DataSetAcceptChanges() methods.

0 Answers  


What is untyped dataset?

0 Answers  


What is ado.net and its features?

0 Answers  






I loaded the dataset with a table of 10 records. One of the records is deleted from the backend, how do you check whether all the 10 records were present while updating the data(which event and steps) and throw the exception 28 can datareader hold data from multiple tables?

0 Answers  


What is concurrency? How will you avoid concurrency when dealing with dataset? (One user deleted one row after that another user through his dataset was trying to update same row. What will happen? How will you avoid the problem?)

0 Answers  


Whate are different types of Commands available with DataAdapter ?

2 Answers  


How can we load multiple tables in a dataset?

0 Answers  


what is Sql Native Client?

5 Answers   Gantec Solutions,


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,


What is an ADO.Net?

0 Answers  


Categories