Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/UserGuide/JPA/Advanced JPA Development/Platform Specific Configurations"

Line 3: Line 3:
 
|toc=n
 
|toc=n
 
|eclipselink=y
 
|eclipselink=y
|eclipselinktype=JPA}}
+
|eclipselinktype=JPA
 +
|api=y
 +
|apis=
 +
*[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/package-summary.html org.eclipse.persistence.platform.database package]
 +
*[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/converters/package-summary.html org.eclipse.persistence.platform.database.converters package]
 +
*[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/jdbc/package-summary.html org.eclipse.persistence.platform.database.jdbc package]
 +
*[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/oracle/jdbc/package-summary.html org.eclipse.persistence.platform.database.oracle.jdbc package]
 +
*[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/oracle/plsql/package-summary.html org.eclipse.persistence.platform.database.oracle.plsql package]
 +
}}
  
 
=Database and Application Server Support=
 
=Database and Application Server Support=
Line 9: Line 17:
  
 
==Database Support==
 
==Database Support==
EclipseLink supports any relational database that is compliant with SQL and has a compliant JDBC driver.  EclipseLink has extended support for several database platforms.  The extended support mainly consists of providing native sequencing support, schema creation, and certain database functions.  These platform classes can be found in the <code>org.eclipse.persistence.platform.database</code> and <code>org.eclipse.persistence.platform.database.oracle</code> packages.
+
EclipseLink supports any relational database that is compliant with SQL and has a compliant JDBC driver.  EclipseLink has extended support for several database platforms.  The extended support mainly consists of providing native sequencing support, schema creation, and certain database functions.  These platform classes can be found in the [[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/package-summary.html <tt>org.eclipse.persistence.platform.database</tt>]] and other <tt>org.eclipse.persistence.platform.database.*</tt> packages.
  
 
These include:
 
These include:

Revision as of 09:33, 25 April 2011

EclipseLink JPA


Database and Application Server Support

EclipseLink supports a number of database platforms and application servers, as described below.

Database Support

EclipseLink supports any relational database that is compliant with SQL and has a compliant JDBC driver. EclipseLink has extended support for several database platforms. The extended support mainly consists of providing native sequencing support, schema creation, and certain database functions. These platform classes can be found in the [org.eclipse.persistence.platform.database] and other org.eclipse.persistence.platform.database.* packages.

These include:

  • Oracle
  • Oracle JDBC (8, 9, 10, 11)
  • MySQL
  • PostgreSQL
  • Derby
  • DB2
  • DB2 (mainframe)
  • Microsoft SQL Server
  • Sybase
  • Informix
  • SQL Anywhere
  • HSQL
  • H2
  • Firebird
  • Microsoft Access
  • Attunity
  • Cloudscape
  • DBase
  • PointBase
  • TimesTen
  • Symfoware
  • MaxDB

It also possible to extend EclipseLink to add extended support for additional platforms. There are also several user contributed platforms in the EclipseLink incubator project. See Platform Incubator.

EclipseLink has extended support for Oracle JDBC drivers. Including:

  • LOB's
  • NChar's
  • XMLType's
  • TIMESTAMP (TZ, LTZ)'s
  • Native batch writing
  • Structured object-relational data-types
  • PLSQL data-types and stored procedures
  • VPD, RAC, proxy authentication
  • XDK XML parser


Application SErver Support

EclipseLink can be used with any Java EE application server that meets the software requirements through the EclipseLink API.

There is EclipseLink-specific integration support for the following servers:


Eclipselink-logo.gif
Version: 2.2.0 DRAFT
Other versions...

Back to the top