I have a SQLite-Database with 3 Tables:
Persons
- ID: Interger
- Name: Text
- Gender: Integer
Families
- ID: Integer
- HusbandID: Integer (Person ID)
- WifeID: Integer (Person ID)
Children
- ID: Integer
- ChildID: Integer (Person ID)
- FamilyID: Integer
- Order: Integer
So i would Love to create a Graphical Output.
How should a OOP class look like that? Children of children should also be drawn. So i need interative to select the Families of each Child, where the Child is Husband Or Wife and find any children of that. How to Do that (SQL SELECT)? And how to create a Graphical Output Class?
Will it possible to create such a Concept together step by step? Read a lot about Tilford Algorithm, but i am a non professional, just Hobby Programmer. To high for me :D
Develope with Xojo/RealBasic/VB/Delphi.
Thanks all