| re: XML to DataSet please help with selection
"Arthur Dzhelali" <a.dzhelali@theday.com> wrote in message news:Xns948C87D5CE1BCadzhelalithedaycom@216.168.3. 44...[color=blue]
> Basically I need to select only weather for location if I know its code.[/color]
: :[color=blue]
> There is got to be a way to select from xml file only data I need so it
> will create dataset only with one element I need.[/color]
Given the weather XML has been loaded into an XmlDocument,
one approach is to:
1. Use an XPath query to retrieve the timestamp and current
element of the city you're interested in.
2. Create a new XmlDocument whose weather element contains
only the two children: timestamp and the city of interest.
Then create the data set from the filtered document you possess
at the end of step 2. Here is a C# snippet that demonstrates this
procedure:
- - - GetSingleCity.cs (excerpt)
using System;
using System.Xml;
// . . .
public XmlDocument GetSingleCity( XmlDocument src, string cityCode)
{
XmlNode current, tstamp;
XmlDocument resultDoc = null;
current = srcDoc.SelectSingleNode(
String.Format(
"/weather/current[./citycode='{0}']",
cityCode.ToUpper( ) ) );
if ( null != current )
{
resultDoc = new XmlDocument( );
XmlElement weather = resultDoc.CreateElement( "weather");
XmlNode tstamp = src.SelectSingleNode( "/weather/timestamp");
if ( null != tstamp )
{
weather.AppendChild( resultDoc.ImportNode( tstamp, true));
}
weather.AppendChild( resultDoc.ImportNode( current, true));
resultDoc.AppendChild( weather);
}
return resultDoc;
}
// . . .
- - -
The key in the above code was the XPath expression,
/weather/current[./citycode='{0}']
which selects a current element with the provision that it only takes
the current element having a child element named citycode matching
an argument string (the all-caps version of the cityCode parameter
in the above code snippet). The portion of the expression inside of
the square brackets is called a "predicate," and can be used to filter
the resulting node set of the original path expression, /weather/current.
The code in the if-block uses XML DOM programming to construct
an XmlDocument, and then creates its root weather element. To this
weather element, a copy of the source document's timestamp is
added as the first child. A copy of the current element (located by
the XPath query above) is then added as the second child.
Notice here I say "copy of," because as you observe I use the
ImportNode( ) method to do a deep clone of these XML DOM
nodes. This is a necessary step to establish the nodes within
the result document. The only nodes that can be added to an
XmlDocument are those that (a) are created by that document,
or (b) are imported (through cloning) into that document. This
is because the node can only be owned by one document.
Finally, the weather element (and its two children) are added to
the XmlDocument before returning the filtered document. The
method returns null when the cityCode does not exist in the
weather information represented within the source document.
Derek Harmon |