0

I was looking to make a tree structure in sqlite DB.

I have gone through this link Database Structure for Tree Data Structure

Currently My TREE is maintained using NSMutableDictonary and stored in plist. I wanted to store it in DB instead of plist.

Any hint in the direction would be appreciated.

Thanks in advance

Community
  • 1
  • 1
Ekra
  • 3,241
  • 10
  • 41
  • 61

1 Answers1

0

You can maintain a table of (parent, child) that will hold the connection between the nodes. The Nodes themselves will have to be in a different table.

Or Arbel
  • 2,965
  • 2
  • 30
  • 40