explain ado.net
Answers were Sorted based on User's Feedback
Answer / surendra
ADO.NET provides consistent access to data sources such as
Microsoft SQL Server, as well as data sources exposed
through OLE DB and XML. Data-sharing consumer applications
can use ADO.NET to connect to these data sources and
retrieve, manipulate, and update data.
ADO.NET cleanly factors data access from data manipulation
into discrete components that can be used separately or in
tandem. ADO.NET includes .NET Framework data providers for
connecting to a database, executing commands, and retrieving
results. Those results are either processed directly, or
placed in an ADO.NET DataSet object in order to be exposed
to the user in an ad-hoc manner, combined with data from
multiple sources, or remoted between tiers. The ADO.NET
DataSet object can also be used independently of a .NET
Framework data provider to manage data local to the
application or sourced from XML.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / ranjan
ADO.NET is a set of libraries[assemblies] provided with .NET towords different types of data communication.
The core library of ADO.NET is system.data.dll
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / deepak baldia
ADO.NET is activeX data object.
It is used to connect the database.
it is in two forms connected and disconnected.
its provides xml support.
It speed is fast tha that older ADO
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / jj
ado.net is new data access technology it is disconnected
architecure i.e there is not necessary to connect database
always whenver it requires data that time only connects
basically the library of ado.net is system.data
its uses connection , command , data reader, data adapter,
dataset
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / michael jerold
ado.net has connected archtecture and disconnected arcitecture
base class is system,data.sqlclinet.
It has some data provider:
command object
connection object
dataadapter
datareader
dataset
Is This Answer Correct ? | 0 Yes | 1 No |
You are creating a Web site for Your company. You receive product lists in the form of XML documents. You are creating a procedure to extract information from these XML documents according to criteria that your users will select. When a user makes a request, you want the results of these requests to be returned as quickly as possible. What should you do? A . Create an XmlDataDocument object and load it with the XML dat Use the DataSet property of the object to create a DataSet object. Use a SQL SELECT statement to extract the requested dat B . Create an XmlDataDocument object and load it with the XML data. Use the SelectNodes method of the object to extract the requested data. C . Create an XPathDocument object and load it with the XML data. Call the CreateNavigator method to create an XPathNavigator object. Call the Select method of the XPathNavigator object to run an XPath query that extracts the requested data. D . Create an XmlReader object. Use the Read method of the object to stream through the XML data and to apply an XPath expression to extract the requested data.
How does cookies work in asp net?
Is it possible to use two versions of assembly at the same time?If possible explain with code?
What is round trip in asp.net?
Explain cookies with example.
What is the difference between page.registerclientscriptblock and page.registerstartupscript?
What are the new navigation controls in asp.net 2.0?
What is Web Server Control Templates.?
Explain how cookies work.
What are the disadvantages of asp.net?
Explain how caching in asp.net 2.0 is different from caching in asp.net 1.1?
How long should a session id be?