我正在尝试研究对象关系数据库,并且很难找到有关它的信息并理解这个概念。我只找到了一些例子。可能是因为英语不是我的第一语言。
我希望能够以 UML 类图的形式制作对象关系数据库设计模型,然后在 Oracle 中创建对象关系 (SQL-99) 表。我不知道该怎么做。
我正在尝试研究对象关系数据库,并且很难找到有关它的信息并理解这个概念。我只找到了一些例子。可能是因为英语不是我的第一语言。
我希望能够以 UML 类图的形式制作对象关系数据库设计模型,然后在 Oracle 中创建对象关系 (SQL-99) 表。我不知道该怎么做。
Navigational models is a legacy of obsolete databases tachnologies that have been supplanted by the relational model:
Both where based on fixed, structured records, and the navigation needed to be fixed up-front. THis is the past. Don't go-there if you want to learn modern ORM or NoSQL. The translation from an UML class diagram to a database model is straightforward. If you need to subdivide large classes into smaller one (like Employee and Address), it means that your classes are too large. Fix it in the original UML model: decompose the classes in smaller classes.
UML allow to make associations navigable (but it's not useful if you target a relational database in the end). THere are then a coupe of techniques that allow you to easily build the tables from that model, using for example identity fields, foreign key mapping (for one-to-one or one-to-many) or association table mapping (for many-to-many). But there are full articles or books on these techniques and it would be too long to develop this here.
P.S: you need to improve your English. French literature on the topic is too poor. I can tell from my own experience. ;-)