1 / 19

Object-Orientation in Query Languages

Object-Orientation in Query Languages. By: Toan Nguyen Class: CS 157A. OQL. OQL, the Object Query Language, gives us an SQL like notation for expressing queries. It is intended that OQL will be used as an extension to some object-oriented host languages, such as C++, Smalltalk, or Java.

raisie
Download Presentation

Object-Orientation in Query Languages

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Object-Orientation in Query Languages By: Toan Nguyen Class: CS 157A

  2. OQL • OQL, the Object Query Language, gives us an SQL like notation for expressing queries. • It is intended that OQL will be used as an extension to some object-oriented host languages, such as C++, Smalltalk, or Java.

  3. Path Expressions • We can access component of object and structures using a dot notation that is similar to the dot used in C and also related to the dot used in SQL. The general rule is as follows. • If p is an attribute, then a.p is the value of that attribute in object a. • If p is a relationship, then a.p is the object or collection of object related to a by relationship b. • If p is a method, then a.p(…) is the result of applying p to a.

  4. Select-From-Where Expressions in OQL • OQL permits us to write expressions using a select-from-where syntax similar to SQL’s • The keyword SELECT followed by a list of expressions. • The keyword FROM followed by a list of one or more variable declarations. • The keyword WHERE and Boolean-value expressions

  5. Modifying the Result • To make the result a set, use the keyword DISTINCT after SELECT, as in SQL. • To make the result a list, add ORDER BY clause at the end of the query again as in SQL.

  6. Example SELECT m FROM Movies m WHERE m.ownedBy.name = “Disney” ORDER BY m.length, m.title This query finding the set of Disney movies, and let the result be a list of movies, order by length. If there are ties, let the movies of equal length be order alphabetically.

  7. Complex Output Types • The elements in the SELECT clause need not be simple variables. They can be any expression, including expressions built using type constructors. For example, we can apply the Struct type constructor to several expressions and get a select-from-where query that produces a set or bag of structures.

  8. Example SELECT DISTINCT Struct(start1: s1, start2: s2) FROM Star s1, Star s2 WHERE s1.address = s2.address AND s1.name<s2.name We want the set of pairs of stars living at the same address.

  9. Quantifier Expressions • Test whether all members of a collection satisfy some condition, and we can test whether at least one member of a collection satisfies a condition. • FOR ALL x IN S: C (x) The result of this expression is TRUE if every x in S satisfies C(x) • EXISTS x IN S: C (x) The result of the expression is TRUE if there is at least one x in such that C(x) is TRUE and it has value FALSE otherwise.

  10. Aggregation Expressions • OQL uses the same five aggregation operators that SQL does: AVG, COUNT, SUM, MIN, and MAX. Example: AVG(SELECT m.length FROM Movies m)

  11. Union, Intersection, and Difference We may apply the union, intersection, and difference operators to two objects of set or bag type. These three operators are represented, as in SQL, by the keywords UNION, INTERSECT, and EXCEPT, respectively. • (SELECT DISTINCT m • FROM Movies m, m.stars s • WHERE s.name = “Harrison Ford”) • EXCEPT • (SELECT DISTINCT m • FROM Movies m • WHERE m.ownedBy.name = “Disney”

  12. Assigning Values to Host-Language Variables • The expressions of OQL that we have learned, such as select-from-where, produce object as values. It is possible to assign to any host-language variable of the proper type Example: oldMovies = SELECT DISTINCT m FROM Movies m WHERE m.year<1920; The following query produces the set of all those movies made before 1920. If oldMovies is a host-language variable of the same type, then the values of oldMovies will become the set of these Movie object.

  13. Obtaining Each Member of a Collection To obtaining each member of a set or bag we need to turn our set or bag into a list. We do so with a select-from-where expressions that uses ORDER BY.

  14. Example 1) movieList = SELECT m FROM Movies m ORDER BY m.title, m.year 2) numberOfMovies = COUNT(Movies); 3) for(i=0; i<numberOfMovies; i++){ 4) movie = movieList[i]; 5) count<<movie.title<<“ “<<movie.year<<“ “ 6) <<movie.length<<“\n”; Line 1 sort the movie class. Line 2 computes the number of movies, using the OQL operator COUNT. Line 3 and 4 use for loop in which integer variable i ranges over each position of the list. After that the i element of the list assigned to variable movie. Line 5 and 6 are for print.

  15. Constants in OQL Basic values a) Atomic values: integers, floats, characters, strings, and booleans. b) Enumerations: The values in an enumeration are actually declared in ODL. Any one of these values may be used as a constant. Complex values built using the following type constructors: a) Set (…). b) Bag (…). c) List (…). d) Array (…). e) Struct (…).

  16. Defining Types in SQL • A simple form of UDT definition is: • The keywords CREATE TYPE • The name for the type • The keyword AS • A parenthesized, comma-separated list of attributes and their types. • A comma-separated list of methods, including their argument type(s), and return type

  17. Example CREATE TYPE AddressType AS { street CHAR(50), city CHAR(20) }; CREATE TYPE StarType AS { name CHAR (30), address AddressType };

  18. Generator and Mutator Functions • In order to create data that conforms to a UDT, or to change components of object with UDT, we can use two kinds of methods. • A generator method. This method has the name of the type and no argument. It also has the unusual property that it make be invoked without being applied to any object • Mutator method. For each attribute x of UDT T, there is a mutator method x(v). When applied to an object of type T, it changes the x attribute of that object to have value v.

  19. References • A First Course In Database Systems Jefferey D. Ullman and Jennifer Widom

More Related