Notifications
Retirer tout
Ask questions
2
Posts
2
Utilisateurs
0
Reactions
3,105
Vu
Début du sujet
I have one question:
I need to know the relational model of the ProjeQtOr application,
I was doing reverse engineer to the database made by ProjeQtOr
on the mysql Server, but I could not to see relations between the
tables.
I want to know if you have a relational model of the ProjeQtOr application
database, or if definitely ProjeQtOr has not a relational model for the database.
Posté : 29/03/2016 9:02 pm
Normal, database is de-normalized.
Rules for relations are :
- idXxxxx references id in table xxxxx (for instance, idProject reference id or table project)
- refType='Xxxxxx', refId=n references Object Xxxxx with id n- this is a not-namalizabe relation, but very powerfull in ProjeQtOr framework. Just take care that Object Xxxxx may not be stored in table xxxxx, check getDatabaseTableName() for the object.
Posté : 29/03/2016 9:09 pm