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

What is meant by entity framework?

1 Answers  


What are three methods for displaying data in a syncfusion datagrid

0 Answers  


Explain the difference between data reader and data adapter?

0 Answers  


What is command class in ado.net?

0 Answers  


how to display empty table to datagrid

3 Answers   LG Soft,






How do you update database through dataset?

0 Answers  


How To Update A Column In A DataGrid Using C#.NET? I am getting InvalidCastException as (Specified cast is not valid) while updating 2nd column in a datagrid? Id,firstname,lastname are the three columns of my datagrid respectively. I wanted to edit the second column(lastname) and update it. I did the following code in DataGrid's updatecommand(),but failed to update ! Int varid=(int)DataGrid1.DataKeys[e.Item.ItemIndex]; TextBox lnm=(TextBox)e.Item.Cells[2].Controls[0]; string str=lnm.Text ; SqlCommand cmd=new SqlCommand("update customer set lastname='" + str + "' where id=" + varid + "",con); cmd.ExecuteNonQuery(); DataGrid1.EditItemIndex=- 1; DataGrid1.DataBind();

2 Answers   Mind Tree, TCS,


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

0 Answers  


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

2 Answers   Crea,


How to load multiple tables into a dataset?

0 Answers  


Explain how to bind the controls(best practice) comboboxes to the data in the dataset?

0 Answers  


How do you connect to sql server database without using sqlclient?

0 Answers  


Categories