Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What are the various methods provided by the dataset object to generate XML
What are the various methods provided by the dataset object to generate XML?
✍: Guest
Note:- XML is one of the most important leap between classic ADO and ADO.NET.
So this question is normally asked more generally how can we convert any data to XML
format. Best answer is convert in to dataset and use the below methods.
? ReadXML
Read’s a XML document in to Dataset.
? GetXML
This is a function which returns the string containing XML document.
? WriteXML
This writes a XML data to disk.
2007-10-24, 4768👍, 0💬
Popular Posts:
Which is the best place to store ConnectionString in Dot Net Projects? I am about to deploy my first...
How To Set session.gc_maxlifetime Properly? - PHP Script Tips - Understanding and Using Sessions As ...
How can you write a loop indefinitely? Two examples are listed in the following code: for(;;) { ... ...
What is application domain? Explain. An application domain is the CLR equivalent of an operation sys...
How To Change the Password of Another User Account? - MySQL FAQs - Managing User Accounts and Access...