can u tell me the why ADO does not support xml..
Answer Posted / 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 |
Post New Answer View All Answers
What is data relation in ado.net?
What are the 3 major types of connection objects in ado.net?
Explain About ado.net components/objects. Usage of data adapters and tell the steps to retrieve data.
What are the pre-requisites for connection pooling?
Can we connect two dataadapters to same data source using single connection at same time?
How to perform sorting on a table in ADO.NET?
Describe the command object and its method.
Explain the differences between oledb sql server, oledbdotnet provider?
What is an ado?
What is concurrency? How will you avoid concurrency when dealing with dataset? (One user deleted one row after that another user through his dataset was trying to update same row. What will happen? How will you avoid the problem?)
How can you identify whether or not any changes are made to the DataSet object since it was last loaded?
What is sqldatasource?
Explain how to call the sql commands asynchronously in ado.net version 2.0?
What is ado.net architecture?
How can I retrieve two tables of data at a time by using data reader? Data reader read and forward only, how is it possible to get 2 tables of data at a time?