Quick question about XMLimport

KisuKisu Member Posts: 381
How do I import multiple row information if I have xml file like this:
<main_element>
  <header> 

    <hd1> </hd1>
    <hd2> </hd2>

  </header>
  <rows>

    <row>
      <rd1> </rd1>
      <rd2> </rd2>
    </row>

    <row>
      <rd1> </rd1>
      <rd2> </rd2>
    </row>

  </rows>
</main_element>

I got the xml port almost done, but it fetches only 1 row per 1 header instead of rows++ per 1 header
K.S.

Answers

  • KisuKisu Member Posts: 381
    Ah solved, had table ref on the <rows> instead of the <row> tag, stupid me #-o

    solved now
    K.S.
Sign In or Register to comment.