Jump to content

XML Query Assistance


Recommended Posts

 
 

Im use to PHP and doing a query seems similar but i need help with syntax.

 

I have an XML file that looks like this

 


<?xml version="1.0" standalone="yes"?>
  <switchIP>
    <SwitchName>ES1UA1</SwitchName>
    <IP>205.71.10.4</IP>
    <Location>02-157-1-q</Location>
  </switchIP>
  <switchIP>
    <SwitchName>ES2UA1</SwitchName>
    <IP>205.71.10.5</IP>
    <Location>02-157-1-q</Location>
  </switchIP>
</DataSet1>
and i am trying to do a query where it will search for "ES2UA1" and i get the data "IP" and "Location"
 
I know i am some where in the ball park with
Dim doc = XDocument.Load(My.Application.Info.DirectoryPath & ".\xmlData.xml")

Dim marker2 = From x In doc...<switchIP> _
                  Where x.SwitchName = "ES1UA1" _
                  Select x
for each x as y
msgbox(y.IP)

Edited by whiteboikyle
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.