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 is namespace in ado.net?

0 Answers  


What is dataadapter in ado.net?

0 Answers  


What is the default timeout specified for "sqlcommand.commandtimeout" property?

0 Answers  


types of Store procedure in Sqlserver2000?

4 Answers  


What is the difference between Optimistic and Pessimistic locking?

0 Answers  






How would you connect to database using .NET?

0 Answers  


How to copy the contents from one table to another table and how to delete the source table in ado.net?

0 Answers  


What is dao and ado?

0 Answers  


What?s the role of the DataReader class in ADO.NET connections?

7 Answers   Honeywell, Ksb,


What is sql connection in ado.net?

0 Answers  


Give few examples of datareader that is used in different dataproviders.

0 Answers  


What is the provider being used to access oracle database?

0 Answers  


Categories