Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. tempname

    Dynamic Members

    Not sure how it doesn't make sense. To sum it up To statically assign a field name I would do something like this. dataCol.Add(customer.FirstName.GetValue().ToString()); Now since I dont want to statically assign field names, I created an array that holds all the field names. So my question...
  2. tempname

    Dynamic Members

    I am working on an app where I require the use of dynamic members. In my app, I have the query customer that has several fields I want to be able to pull data from. Ideally I could do this statically, but I will need to use some of my previous classes to add more queries. So that is why I...
  3. tempname

    Parsing XML

    I got it figured out. Here is how I did it. #parse result xml my $data = $xml->XMLin($result); #test print parsed xml #print Dumper($data); #create eou variable that holds the parsed xml column names my $columns = $data->{COLUMNS}; my $counter = 0; foreach $rData...
  4. tempname

    Parsing XML

    With my webservice, as I said it a previous post I get some really funky xml. After testing a bit, I have found a few issues that I am uncertain of. With in the xml result that I receive, I get back xml like such. <COLUMNS> [Tab delimited column data] </COLUMNS> <DATA> [Tab delimited data]...
  5. tempname

    Parsing Data into arrays

    Bah, nm sorry to waste the space. I got it figured out about two seconds after I made this post.
  6. tempname

    Parsing Data into arrays

    I am working with an xml webservice that returns some very funky xml. After parsing the xml, I am left with a tab delimited list. What I need to do is to take this list and convert into an array. I would prefer the array to not be associative in nature. This is what I have so far. The...

Part and Inventory Search

Back
Top