↧
Answer by James Whiteside for Polymorphism in databases
To expand on the reference to NoSQL solutions in Cristophe's answer, a polymorphic database is perfect for this kind of use case. This would allow you to natively implement the polymorphic data model...
View ArticleAnswer by Christophe for Polymorphism in databases
The OO structure of your dataYou have identified several classes in your Character population, that are derived from the abstract role , namely Attack, Defense and Support. Each kind of role has...
View ArticlePolymorphism in databases
I would like to model a database entity for a set of players.Each player should have : a number of fixed fields (name, role, ...) a number of variable fields for skill levels (if role is ATK, skills...
View Article