can u tell me the why ADO does not support xml..

Answers were Sorted based on User's Feedback



can u tell me the why ADO does not support xml....

Answer / pavan kumar p

ADo does not support XML because its a Connected
Architecture. There is a great overhead when dealing with
Connected Architecture.

Where as ADO.Net supports XML. This contains DATASET which
is an ADO.NET object which is helpful for the XML support.

Nice Article is Available in the link below.

http://www.codeproject.com/KB/database/ADONET_and_XML.aspx




Thanks

Is This Answer Correct ?    5 Yes 0 No

can u tell me the why ADO does not support xml....

Answer / niloy roy

There is a lot of mythology surrounding ActiveX Data
Objects (ADO) and XML. ADO has supported XML since version
2.1. In general, this is a good thing, especially for
developers looking for better ways to reach out to the four
million programmers who use Visual Basic and who also
worship at the altar of the disconnected recordset.
However, simply supporting XML in your application is not
good enough because ADO uses a very stylized XML-based
vocabulary to perform its magic. The way ADO uses XML
allows ADO to interoperate with applications written in
programming languages such as Java, Perl, or Python and on
platforms such as Unix, Linux, and Apache. Yes, the
developer who uses Visual Basic can deal with arbitrary XML
using any number of XML parsers. However, morphing your XML
into the vocabulary of ADO makes it a no-brainer for any
typical application-focused programmer to access your
information with Visual Basic.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More ADO.NET Interview Questions

Explain the advantage of ADO.Net?

0 Answers  


What are the Features and disadvantages of dataset

0 Answers   Microsoft,


What is the difference between SqlCommand and SqlCommandBuilder?

0 Answers  


what is the syntax code for oldb to connect oracle?

2 Answers  


Explain the difference between ado and ado.net?

0 Answers  


What are all features of ADO.Net?

0 Answers  


If i am expecting a single result from sqlserverdatabase then what command should i follow ?sqlcommand.executereader (commandbehaviour.singleresult)or sqlcommand.executescalar()

4 Answers  


what is different between SqlCommand object and Command Behaviour Object

3 Answers  


What happens when we issue Dataset.ReadXml command?

1 Answers  


How do you sort the data in datagrid?

4 Answers   Choice Solutions,


What is method to get XML and schema from Dataset? getXML() and get Schema ()

0 Answers  


What is the difference between dataset and datatable?

0 Answers  


Categories