Explain About ADO and its objects



Explain About ADO and its objects..

Answer / Bhavana Varshney

ADO (ActiveX Data Objects) is a data access technology in .NET that enables the manipulation of databases like Access, SQL Server, Oracle etc., from your application. It consists of several main objects: Connection, Command, DataReader, and DataSet.
1. Connection: Represents the connection between the client and the database server.
2. Command: Used to execute SQL commands against a data source.
3. DataReader: A forward-only, read-only cursor that allows you to read the data from the database.
4. DataSet: It acts as an in-memory cache of data, which can be navigated and manipulated like the underlying data.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What does namespace mean?

1 Answers  


Explain the process of abstraction with an example?

1 Answers  


Why would you use untrusted verificaion?

1 Answers  


Can you access a hidden base class method in the derived class?

1 Answers  


What is lazy loading and eager loading in c#?

1 Answers  


Is it good to use var in c#?

1 Answers  


Is datetime value type c#?

1 Answers  


What is encapsulation in csharp?

1 Answers  


code for arranging given number in possible permutation ways ex:123,321,312,132,231,213.

1 Answers  


What is a console?

1 Answers  


Where test director stores its data ? Database ,Local file etc...? I need to read this data from Visual Studio 2005 c# client. Regards

1 Answers  


how to print invert pyramid in c#

1 Answers   ForSight,


Categories