hi,

I need to import question / answers database into my drupal website.

I've no issues with importing the data and mapping it to node-types and CCK fields. I'm following this excellent tutorial:

http://www.lullabot.com/articles/drupal-data-imports-migrate-and-table-w...

and using the modules Migrate, Table Wizard, Schema.

But I have no idea how to set the relationships.. (i.e.

answer A belongs to question N,
question N (or answer A) belongs to user U
In the original tables the fields "linkToQuestion" and "owner" contain such relationships.

In my Drupal installation I'm using a forum content-type with Posts - Comments (and I'm using Node comments module to convert the comments to nodes with CCK fields).

So everything is ready, but I dunno how to inform Drupal about the relationships... I'm now studying how the forum comments are assigned to forum posts by Drupal and how the posts are assigned to Users, to understand which tables should be updated in the Drupal database, but I'm actually hoping in something ready to use.

Thanks