What is data adapter in ado.net with example?
What is ole in vb?
What is oledb connection?
What is the use of sqldatareader class?
How do u implement locking concept for dataset?
What providers do you use to connect to oracle database ?
What provider ADO.net use by default ?
5 Answers Accenture, BirlaSoft, Wipro,
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
Why is it important to close an ado.net application?
How many major types of connection objects in ADO.NET?
What is an ado?
Explain ado.net features?
What is Serialization in .NET? what are the types of Serialization?