feature of ADO.Net

Answers were Sorted based on User's Feedback



feature of ADO.Net ..

Answer / srinivas shahukaru

ADO.net is a works on Disconnected achiteture .

Is This Answer Correct ?    22 Yes 1 No

feature of ADO.Net ..

Answer / sai

ADO.Net is works on disconnected architecture it is an
object oriented set of libraries that allows you to interact
with the data source.data retrieved will be through data set

Is This Answer Correct ?    21 Yes 0 No

feature of ADO.Net ..

Answer / kishore

ADO.net is a works on Disconnected achiteture .

Is This Answer Correct ?    5 Yes 1 No

feature of ADO.Net ..

Answer / tejas mer

ADO.Net provides the base classes to access the or deal with DataBase.

The classes or namespaces depends on the type of provider we are using (like Sytem.Data.SqlClient for SQL Sever or System.Data.Oracleclient) for Oracle...

It also contains few common classes like
DBConnection
DBCommand to establish connection and execute commands respectively..

Below are the list of the classes widly used from ADO.NEt

DataSet
SQLConnection
SQLCommand
SQLDataAdapter
DataTable
DataView
SQLDataReader


Few methods widly used

DataSet.AcceptChanges();
Dataset.RejectChanges();

DataReader.ExecuteNonQuery();
DataReader.ExecuteScalar();
DataReader.ExecuteReader();


DataAdapter.Fill(DataSet);

Is This Answer Correct ?    4 Yes 0 No

feature of ADO.Net ..

Answer / ashbin

1.ADO.Net is a Technology which interacts with DataSouce in
Disconnected mode.
2.Multiple users can work on Single Database at a time,there
is no Network Traffic.
3.Mapping of Multiple tables through Ado.Net
4.Reduce the workload on Server.
5.But Slow in Speed.

Is This Answer Correct ?    2 Yes 0 No

feature of ADO.Net ..

Answer / sandeep singh shekhawat

Ado.net is advanced of Ado it provide the direct connectivity with datastore without using OLEDB and ODBC driver.

ADO.net provide disconnected approch using DataAdapter object

Is This Answer Correct ?    1 Yes 0 No

feature of ADO.Net ..

Answer / harsh kagda

there r various new features added in ado.net like

1.optimized dataSet serialization

2.batch updates — Reduction in database roundtrips
3.Asynchronous Data Access
4.common provider model
5.bulk copy
6.enhancements to the dataset
7.data paging

Is This Answer Correct ?    1 Yes 0 No

feature of ADO.Net ..

Answer / reetesh kumar

Microsoft's ADO.NET heralded the introduction of a
disconnected mode of data access, enabling data exchange
even across process boundaries efficiently. This is in sharp
contrast to the earlier data access technologies with only
connected data access mode of operation. It should be noted
that ADO.NET supports both connected and disconnected mode
of data access. The introduction of ADO.NET has come as a
boon to the development community with excellent features
such as, seamless support for XML and support for connection
pooling, to name a few. This article introduces the reader
to newly added features to ADO.NET 2.0 and discusses how
they can improve the performance, scalability, and
maintainability of applications.

Is This Answer Correct ?    0 Yes 0 No

feature of ADO.Net ..

Answer / prashant shukla

ado.net provide a set of classes in which we connect our
frontend with backend

Is This Answer Correct ?    0 Yes 0 No

feature of ADO.Net ..

Answer / smiley

ado.net is both connection oriented architecture and
disconnected architecture..it is used for to retrive data
from back end to front end...

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ADO.NET Interview Questions

What does ado stand for in ado.net?

0 Answers  


What are all the different methods under sqlcommand?

0 Answers  


IF we have lot of records in Database. How we can handle them?

5 Answers   Honeywell,


What is ado connection?

0 Answers  


Explain ODP.net

0 Answers  






Can a DataReader be used as a DataSource for a GridView. If it is so how will you handle paging.

3 Answers   Directi,


What is the default Timeout for SqlCommand.CommandTimeout property?

0 Answers  


What are typed and untyped dataset?

0 Answers  


HOW TO FILL GRID VIEW WITH OUT USING SQLDATASOURCE AND PROGRAMING?

4 Answers  


Explain the difference in an abstract class and an interface?

0 Answers  


Using Ado.net, what front ends and back ends can you use?

10 Answers  


What is datatable in ado.net?

0 Answers  


Categories