Hello there!

I'm totally new to Xindice and my question is conceptual.
I have an XML file which lists about 250 movies (its titles, directors, actors etc.), just like this:


...
<movie id="...">
 <title>...</title>
 <directors>
  <director id="..."/>
  <director id="..."/>
  <director id="..."/>
 </directors>
 <actors>
  <actor id="..."/>
  <actor id="..."/>
  <actor id="..."/>
 </actors>
 <!-- ... -->
</movie>
...

So am I understand right that <movie> will become a row (in relational database therms) and each subtag (title, directors, ...) a column? Or am I bound to relational model too much?



Reply via email to