Presentation is loading. Please wait.

Presentation is loading. Please wait.

1. 2 Standards group: ODMG = Object Data Management Group. ODL = Object Description Language, like CREATE TABLE part of SQL. OQL = Object Query Language,

Similar presentations


Presentation on theme: "1. 2 Standards group: ODMG = Object Data Management Group. ODL = Object Description Language, like CREATE TABLE part of SQL. OQL = Object Query Language,"— Presentation transcript:

1 1

2 2 Standards group: ODMG = Object Data Management Group. ODL = Object Description Language, like CREATE TABLE part of SQL. OQL = Object Query Language, tries to imitate SQL in an OO framework. UML: unified modeling language

3 3 UML is designed to model software, but has been adapted as a database modeling language. Midway between E/R and ODL. No multiway relationships as in E/R. But allows attributes on binary relationships, which ODL doesn’t. Has a graphical notation, unlike ODL.

4 4 Sets of objects, with attributes (state ) and methods (behavior ). Attributes have types. PK indicates an attribute in the primary key (optional) of the object. Methods have declarations: arguments (if any) and return type.

5 5 Example: Cars Class Car PK Name: string Mark: string setName(n) setMark(a) getName() : string getMMark() : string Class Name Attributes Methods

6 6 Binary relationships between classes. Represented by named lines (no diamonds as in E/R). Multiplicity at each end. m..n means between m and n of these associate with one on the other end. * = “infinity”; e.g. 1..* means “at least one.”

7 7 Example: Association GarageCar 1..50 Serves 0..*

8 8 Comparison With E/R Multiplicities E/R UML 0..* 0..* 0..1 0..* 1..1

9 9 Attributes on associations are permitted. Called an association class. Analogous to attributes on relationships in E/R.

10 10 Example: Association Class GarageCar 1..50 0..* Serves price: float service: string

11 11 Like E/R, but subclass points to superclass with a line ending in a triangle. The subclasses of a class can be: Complete (every object is in at least one subclass) or partial. Disjoint (object in at most one subclass) or overlapping.

12 12 Example: Subclasses Car name: string mark: string details color: string

13 13 We can use any of the three strategies outlined for E/R to convert a class and its subclasses to relations. 1.E/R-style: each subclass’ relation stores only its own attributes, plus key. 2.OO-style: relations store attributes of subclass and all superclasses. 3.Nulls: One relation, with NULL’s as needed.

14 14 Relationships with implication that the objects on one side are “owned by” or are part of objects on the other side. Represented by a diamond at the end of the connecting line, at the “owner” side. Implication that in a relational schema, owned objects are part of owner tuples.

15 15 Example: Aggregation Car name: string mark: string Award title: string year: int 0..1 Won 0..*

16 16 Like aggregations, but with the implication that every object is definitely owned by one object on the other side. Represented by solid diamond at owner. Often used for subobjects or structured attributes.

17 17 Example: Composition Car name: string mark: string Award title: string year: int 1..1 Won 0..*

18 18 We could store the awards of a car with the car tuple. Requires an object-relational or nested- relation model for tables, since there is no limit to the number of awards a car can win.

19 19 Example: Composition Garage name: string phone: int Addr street:string city: string 1..1 Won 0..1

20 20 Since a car has at most one address, it is quite feasible to add the street and city attributes of Addr to the Cars relation. In object-relational databases, Addr can be one attribute of Cars, with structure.

21 21 Create a new model diagram 1.Click the File tab. 2.Click New, click Software and Database, and then double-click Database Model Diagram.

22 22 1.On the Database tab, in the Manage group, click Display Options. 2.In the Database Document Options dialog box, select the symbol set that you want to use and other table and relationship options, and then click OK NOTE: refer to Lecture 5 UML supplements…doc for more about VISIO

23 23 You can now design your own database. Go ahead with the implementation of this database Cars(name(20), mark(20)) Garage( name(20), addr(40), license(10)) Customers(name(40), addr(40), phone(9)) Drives(customer(40), car(10)) Serves (garage(20), car(20), service(10), price()) Frequents( customer(40), garage(20))


Download ppt "1. 2 Standards group: ODMG = Object Data Management Group. ODL = Object Description Language, like CREATE TABLE part of SQL. OQL = Object Query Language,"

Similar presentations


Ads by Google