To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

Oracle TopLink

From Wikipedia, the free encyclopedia

Oracle TopLink is a mapping and persistence framework for Java developers. TopLink is produced by Oracle and is a part of Oracle's OracleAS, WebLogic, and OC4J servers.[1] It is an object-persistence and object-transformation framework. TopLink provides development tools and run-time functionalities that ease the development process and help increase functionality. Persistent object-oriented data is stored in relational databases which helps build high-performance applications. Storing data in either XML (Extensible Markup Language) or relational databases is made possible by transforming it from object-oriented data.

A rich user-interface is possible on TopLink with the help of TopLink Mapping Workbench. This Mapping Workbench makes it possible to carry out the following with ease.

  • Graphical mapping of an object model to data model.
  • Generation of data model from its object model and vice versa.
  • Auto-mapping of any existing data models and object models.

Oracle's JDeveloper IDE provides easy integration of these functionalities provided by the Mapping Workbench.

With the use of TopLink, users can stay more focused on their primary cause and let TopLink handle the integration of persistence and object transformation into their application. Designing, implementing and deploying process is accelerated as TopLink supports a variety of data sources and formats such as Relational database, Object-relational database, Enterprise information system (EIS), XML and many others.

YouTube Encyclopedic

  • 1/5
    Views:
    2 640
    1 190
    8 530
    791
    1 580
  • oracle database installation 10g R2 Arabic part1
  • Instalar Weblogic Server 10.3.6.0 en Oracle Linux Enterprise 6.6
  • LINUX TUTORIALS FOR BEGINNERS CHAPTER 20 INSTALLING WEBLOGIC SERVER
  • Why to learn WebLogic? | WebLogic 12c Introduction | WebLogic 12c Administration |
  • Database Programming with Java

Transcription

History

Toplink was originally developed by The Object People in Smalltalk. It was ported to Java in 1996-1998 and called "TopLink for Java". In 2002, TopLink was acquired by Oracle Corporation and was developed under the Oracle Fusion Middleware product. The TopLink code was donated to the Eclipse Foundation and the EclipseLink project was born in 2007.[1] The EclipseLink now provides the functionality of TopLink. Sun Microsystems selected EclipseLink in March 2008, as the implementation for the JPA 2.0, JSR 317 reference. A number of versions of TopLink have been released since and the latest version 12c (12.1.3) is available for free Download.[2]

Key Features

  • Rapidly build high-performance enterprise applications that are scalable and maintainable.
  • Extensive mapping support using relational, object-relational data type and XML.
  • Advanced query capability including native SQL, Java Persistence Query Language (JPQL) and EclipseLink Expressions framework.
  • RESTful Services
  • Just-in-time reading.
  • Tenant Isolation
  • NoSQL
  • Various Optimistic and pessimistic locking policies and options.
  • JSON
  • Integration with commonly used application servers and databases.
  • External Metadata Sources
  • TopLink Grid.[1]

Key Components

EclipseLink Core and API

The runtime component of TopLink is provided by the EclipseLink Core. This API provides direct access to the runtime, which is embedded into the application. Persistence behavior is enabled by making application calls that invoke EclipseLink API to perform these functionalities which provides safe access to shared databases.[3]

Import the following class to use extended functionality of EclipseLink.

import org.eclipse.persistence.*

Object-Relational(JPA 2.0) Component

The binding of Java classes to XML schemas is possible with the help of Object-XML, which is an EclipseLink component. By implementing JAXB, mapping information is provided through annotations. It also provides manipulation of XML.[3]

SDO Component

The Service Data Objects (SDO) provides with the use of SDO API, use dynamic objects to customize and manipulate XML, use of static data objects and conversion of XML Schema.[3]

Database Web Services Component

Database Web Services (DBWS) facilitates access to relational databases with the help of web service. A database access can be made without the need to write a Java code. The XML SOAP Messages and the databases are connected by the runtime component of DBWS which uses EclipseLink.[3]

TopLink Grid

TopLink Grid is an integration mechanism that provides connection between Oracle Coherence and EclipseLink. An application generally interacts with the relational database, which is its primary database. But with TopLink the application can store data on the Coherence grid called as JPA on the grid.[4]

TopLink Grid functionality can be used only if the user has license for Oracle Coherence. This functionality is provided by:

toplink-grid.jar

To get support for TopLink Grid and EclipseLink, users also need to import the following package of classes.

org.eclipse.coherence.*

TopLink Operations (Insert, Update, Delete)

Database operations like Insert, Update and Delete can also be performed in TopLink. The changes made to the database are reflected in the Oracle Coherence cache. In Java Persistence API, an entity is a persistence class. Using TopLink, a number of performance features for writing large amounts of data can be implemented. Batch writing, stored procedure support, parameter binding, statement ordering and other features are offered to satisfy database constraints.

The basic operations are

Insert

The EntityManager method persist(Object entity) is used to add an instance and marks it for insertion into the database.

entityManager.getTransaction().begin(); 
Employee newEmployee = new Employee(5); 
entityManager.persist(newEmployee); 
entityManager.getTransaction().commit();

On completion of the transaction, the newEmployee data will be inserted into the database.[5]

Update

Updating an entity means simply reading the transaction and updating the properties of this entity. Updating the Employee LastName can be done as follows.[5]

entityManager.getTransaction().begin(); 
Employee existingEmployee = entityManager.find(Employee.class, 5); 
existingEmployee.setLastName("NewLastName"); 
entityManager.getTransaction().commit();

Delete

Deleting an entity is the opposite of Insertion and can be one using remove(Object entity) method of the EntityManager.

entityManager.getTransaction().begin(); 
Employee existingEmployee = entityManager.find(Employee.class, 5); 
entityManager.remove(existingEmployee); 
entityManager.getTransaction().commit();

The EntityManager method flush() deletes the entity on completion of the transaction.[5]

Development Tools

Users can use most of the tools in the market and use TopLink along with it. But the following toots provide special integration with TopLink.

Supported Database Platforms

Database Java Class
Apache Derby org.eclipse.persistence.platform.database.DerbyPlatform
Attunity org.eclipse.persistence.platform.database.AttunityPlatform
dBASE org.eclipse.persistence.platform.database.DBasePlatform
Firebird org.eclipse.persistence.platform.database.FirebirdPlatform
H2 org.eclipse.persistence.platform.database.H2Platform
HyperSQLDatabase(HSQL) org.eclipse.persistence.platform.database.HSQLPlatform
IBM Cloudscape org.eclipse.persistence.platform.database.CloudscapePlatform
IBM Db2 org.eclipse.persistence.platform.database.DB2MainframePlatform
Microsoft Access org.eclipse.persistence.platform.database.AccessPlatformPlatform
Microsoft SQLServer org.eclipse.persistence.platform.database.SQLServerPlatform
MySQL org.eclipse.persistence.platform.database.MySQLPlatform

See also

References

  1. ^ a b c "Java Persistence/TopLink - Wikibooks, open books for an open world". en.wikibooks.org. Retrieved 2016-02-07.
  2. ^ "Oracle TopLink Software Downloads". www.oracle.com. Retrieved 2016-02-08.
  3. ^ a b c d "Oracle Documentation" (PDF).
  4. ^ "Oracle® Fusion Middleware Integrating Oracle Coherence". docs.oracle.com. Retrieved 2016-02-08.
  5. ^ a b c "TopLink JPA: How to Create, Modify and Delete an Entity". www.oracle.com. Retrieved 2016-02-08.

External links

This page was last edited on 16 April 2024, at 03:49
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.