Download Object Relational Mapping Tools

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Open Database Connectivity wikipedia , lookup

Relational algebra wikipedia , lookup

Entity–attribute–value model wikipedia , lookup

Database wikipedia , lookup

Clusterpoint wikipedia , lookup

Functional Database Model wikipedia , lookup

Versant Object Database wikipedia , lookup

Database model wikipedia , lookup

Relational model wikipedia , lookup

Transcript
Object Relational Mapping
Tools
[Sivakumar Natarajan]
5/24/2017
Introduction
OO is the predominant approach
used to build mainstream B systems
RDBMS are the most prevalent
implementation of data stores
OO design models problem domain
as real-world objects, RD
development is to normalize data
O-R modelling is a necessary but
not sufficient to build strong and
flexible systems
5/24/2017
Relational Terminology










Relation
Attribute
Domain
Tuple<Person SSN# = "123-45-6789" Name = "Art Larsson" City = "San Francisco">
Attribute Value
Relation Value
Relation Variable
Database
Base Relation Values
Derived Relation Values
5/24/2017
Relational Database Design
The relational model is composed of
entities and relations. Figure 1
illustrates LINEITEM and PRODUCT
tables and various relationship
between them
Figure 1
5/24/2017
Object Modeling Terminology








Identity
State
Behavior
Encapsulation
Type
Associations
Class
Inheritance
5/24/2017
Object Model Design
An object model contains classes
Figure 2 illustrates a simple object
model.
Figure 2
5/24/2017
Objects integrated into the
Relational Model
 Why do we want to do it?
 What are the advantages in doing it?
 What are the disadvantages in doing it?
 Is there any help available?
5/24/2017
Java Blend v2.0
Components are:
 Mapping tool: A GUI for mapping between database schema and
Java programming language classes
 The Preprocess program: The preprocess program - Preprocesses
.xjava Java programming language source files and .oql OQL
source files
 Runtime libraries - Accessed by means of the Java Blend API,
a set of Java language routines for access to
Java Blend objects, and the underlying database. Application
programmers use these methods.
5/24/2017
Java Blend
Example application that queries and updates data about
customers and their sales orders.
CREATE TABLE customer {
custid INTEGER NOT NULL,
address VARCHAR (50),
rep INTEGER,
PK_custid PRIMARY KEY (custid),
FK_salesrep FOREIGN KEY (rep) REFERENCES salesrep (repid) )
}
Equivalent class is
class Customer implements PersistenceCapable {
int custID;
String address;
SalesRep rep; };
5/24/2017
Java Blend Resources
 http://www.sun.com/software/javablend
5/24/2017
Top Link for Java
Features:
 Transparent Persistence
 Object-data mapping solution
 EJB persistence solution
 Enterprise data integration
 Mapping workbench
 optimistic and pessimistic locking
 object level transactions
 application server integration and portability
 real-time performance
5/24/2017
Visual Mapping workbench
5/24/2017
Foundation Library for Java
TopLink for Java Foundation Library is an object-relational
framework, which facilitates the construction of an object-oriented
system that can store its objects/data in a relational database.
5/24/2017
Top Link Resources
Http://www.objectpeople.com
5/24/2017
Other Tools
 JRB (Java Relational Binding) -- Ardent
 Data Director for Java (DDJ) -- Informix/IBM
 UDE (Universal Development Env)--Formida
Free Software
 Power Tier-- Persistence
 Oracle Designer 2000--Oracle
 Jasmine -- Computer Associates
 SQL Object Factory -- POET Software
 VBS Framework -- ObjectMatter Inc.
5/24/2017
Persistence PowerTier
Example to be included:
5/24/2017