About ADO and its objects ?



About ADO and its objects ?..

Answer / shiva

ACTIVEX DATAOBJECTS FOR .NET:
it is specification for interact with database or XML doc..
4 types obj:
Connection Obj,
Command Obj,
DataReader Obj,
DataAdapter obj......

Is This Answer Correct ?    6 Yes 0 No

Post New Answer

More ADO.NET Interview Questions

What is the provider and namespaces being used to access oracle database?

4 Answers   Microsoft,


What is the role of data provider in ado.net?

0 Answers  


What is the difference between connected and disconnected environment?

0 Answers  


What is difference in record set and dataset?

0 Answers  


how you will deal result set? How do you sort a dataset?If a dataset contains 100 rows, how to fetch rows between 5 and 15 only?

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,


How does entity framework work?

0 Answers  


What does sqldatareader return?

0 Answers  


What is the Magic Tables in Sqlserver2000?

7 Answers   IBM, SQL Star,


What are the Different layers in ADO.Net?

7 Answers  


how we can fire event in databound coulm in datagfrid withot using button?

0 Answers   Tech Mahindra,


What is the return type of executescalar?

0 Answers  


Categories