Click to See Complete Forum and Search --> : How to retreive as one Table


skid_myanmar
March 27th, 2006, 11:12 PM
Hi...i would like to know how to retreive all these xml data as one record in table by DataSet or XmlDataDocument...and i would like to know that I can retreive or not... only required column from XML by using XSL or XSD....i wanna omit some Columns


<?xml version="1.0" encoding="UTF-8" ?>
<ROW>
<COL>
<DATA>a</DATA>
</COL>
<COL>
<DATA>b</DATA>
</COL>
<COL>
<DATA>c</DATA>
</COL>
<COL>
<DATA>d</DATA>
</COL>



Thanks

skid_myanmar
March 28th, 2006, 12:44 AM
Hi all,
For example, I hav this xml

<?xml ...?>
<tablename>abc</tablename>
<version>1</version>
<resultset>
<row>
<col>abc</col>
<col>def</col>
</row>
</resultset>

And I only want to filter not to include <tablename> and <version> in coresponding object. eg. DataSet or XmlDataDocument...by using XSL or XSD...how can i acheive it


Thanks

Skid