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"

m
 
(40 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
----
 +
 +
 +
'''[[Image:Elug_draft_icon.png|Warning]] This page is now obsolete. '''
 +
 +
For current information, please see "Database Support" in the ''EclipseLink Concepts Guide'':
 +
http://www.eclipse.org/eclipselink/documentation/latest/concepts/app_tl_ext001.htm
 +
 +
 +
----
 +
 +
 +
 
{{EclipseLink_UserGuide
 
{{EclipseLink_UserGuide
 
|info=y
 
|info=y
 
|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]
 +
}}
  
 
=Database and Application Server Support=
 
=Database and Application Server Support=
 +
EclipseLink supports a number of database platforms and application servers, as described below.
  
 
==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 include:
+
The following databases are supported. Click the names below to see the Javadoc that describes the support for that platform. The classes are in the [http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/package-summary.html <tt>org.eclipse.persistence.platform.database</tt>] package.
* Oracle
+
* Oracle JDBC (8, 9, 10, 11)
+
* MySQL
+
* [[/PostgreSQL|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.
+
<table>
There are also several user contributed platforms in the EclipseLink incubator project. See [[EclipseLink/Development/Incubator/Platform|Platform Incubator]].
+
<caption>'''Supported Database Platforms'''</caption>
 +
<tr>
 +
<td>'''Database'''</td>
 +
<td>'''JavaDoc'''</td>
 +
<td>'''Features'''</td>
 +
</tr>
 +
<tr valign="top">
 +
<td>Apache Derby
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/DerbyPlatform.html <tt>DerbyPlatform</tt>]
 +
</td>
 +
<td>Provides Derby specific behavior.  
 +
</td>
 +
</tr>
  
EclipseLink has extended support for Oracle JDBC drivers. Including:
+
<tr valign="top">
* LOB's
+
<td>Attunity
* NChar's
+
</td>
* XMLType's
+
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/AttunityPlatform.html <tt>AttunityPlatform</tt>]</td>
* TIMESTAMP (TZ, LTZ)'s
+
<td>Platform class that works with Attunity's Connect JDBC driver.
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>dBASE
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/DBasePlatform.html <tt>DBasePlatform</tt>]
 +
</td>
 +
<td>Provides dBASE specific behavior, including:
 +
* Writes Time & Timestamp as strings (because they are not supported)
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>Firebird
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/FirebirdPlatform.html <tt>FirebirdPlatform</tt>]
 +
</td>
 +
<td>Provides Firebird specific behavior.
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>H2
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/H2Platform.html <tt>H2Platform</tt>]
 +
</td>
 +
<td>Provides H2 specific behavior.
 +
</td>
 +
</tr>
 +
 
 +
<tr valign=top>
 +
<td>HyperSQL DataBase (HSQL)
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/HSQLPlatform.html <tt>HSQLPlatform</tt>]
 +
</td>
 +
<td>Provides HSQL specific behavior. Supports HSQL functionality as of 1.8.1. Features include:
 +
* DDL creation
 +
* IDENTITY sequencing
 +
* SEQUENCE objects
 +
* Functions
 +
* Pagination
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>IBM Cloudscape
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/CloudscapePlatform.html <tt>CloudscapePlatform</tt>]</td>
 +
<td>Provides CloudScape DBMS specific behavior.
 +
</td>
 +
</tr>
 +
 
 +
<tr valign=top>
 +
<td>IBM DB2 Mainframe
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/DB2MainframePlatform.html <tt>DB2MainframePlatform</tt>]
 +
</td>
 +
<td>Provides DB2 Mainframe specific behavior. This provides for some additional compatibility in certain DB2 versions on OS390. Features include:
 +
* Specialized CONCAT syntax
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>IBM DB2
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/DB2Platform.html <tt>DB2Platform</tt>]
 +
</td>
 +
<td>Provides DB2 specific behavior, including:
 +
* Schema creation
 +
* Native SQL for byte[], Date, Time, & Timestamp
 +
* Table qualified names.
 +
* Stored procedures
 +
* Temporary tables
 +
* Casting
 +
* Database functions
 +
* Identity sequencing
 +
* SEQUENCE sequencing
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>IBM Informix
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/InformixPlatform.html <tt>InformixPlatform</tt>]
 +
</td>
 +
<td>Provides Informix specific behavior, including:
 +
* Types for schema creation.
 +
* Native sequencing using @@SERIAL.
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>Microsoft Access</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/AccessPlatform.html <tt>AccessPlatformPlatform</tt>]</td>
 +
<td>Provides Microsoft Access specific behavior.
 +
</td>
 +
<td>.
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>Microsoft SQLServer
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/SQLServerPlatform.html <tt>SQLServerPlatform</tt>]
 +
</td>
 +
<td>Provides Microsoft SQL Server specific behavior, including:
 +
* Native SQL for byte[], Date, Time, & Timestamp.
 +
* Native sequencing using @@IDENTITY.
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>MySQL
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/MySQLPlatform.html <tt>MySQLPlatform</tt>]
 +
</td>
 +
<td>Provides MySQL specific behavior, including:
 +
* Native SQL for Date, Time, & Timestamp
 +
* Native sequencing
 +
* Mapping of class types to database types for the schema framework
 +
* Pessimistic locking
 +
* Platform specific operators
 +
</td>
 +
<td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>Oracle
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/OraclePlatform.html <tt>OraclePlatform</tt>]
 +
</td>
 +
<td>Provides Oracle Database specific behavior, including:
 +
* LOB
 +
* NChar
 +
* XMLType
 +
* TIMESTAMP (TZ, LTZ)
 
* Native batch writing
 
* Native batch writing
 
* Structured object-relational data-types
 
* Structured object-relational data-types
* PLSQL data-types and stored procedures
+
* PLSQL datatypes and stored procedures
 
* VPD, RAC, proxy authentication
 
* VPD, RAC, proxy authentication
 
* XDK XML parser
 
* XDK XML parser
 +
* Hierarchical selects (Select by prior)
 +
* Returning clause
 +
* Flashback history and queries
 +
* Stored procedures, output parameters and output cursors
 +
* Stored functions
 +
* Oracle AQ
 +
</td>
 +
</tr>
  
<!--
+
<tr valign="top">
*[[EclipseLink/UserGuide/JPA/Advanced JPA Development/Platform Specific Configurations/Oracle|Oracle]]
+
<td>Oracle JavaDB
*[[EclipseLink/UserGuide/JPA/Advanced JPA Development/Platform Specific Configurations/DB2|DB2]]  
+
</td>
*[[EclipseLink/UserGuide/JPA/Advanced JPA Development/Platform Specific Configurations/MySQL|MySQL]]
+
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/JavaDBPlatform.html <tt>JavaDBPlatform</tt>]
-->
+
</td>
 +
<td>Allows to use <tt>JavaDBPlatform</tt> as a synonym for <tt>DerbyPlatform</tt>
 +
</td>
 +
</tr>
  
==Application SErver Support==
+
<tr valign="top">
 +
<td>Oracle TimesTen
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/TimesTenPlatform.html <tt>TimesTenPlatform</tt>]
 +
</td>
 +
<td>Provides Oracle TimesTen database specific behavior.
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>Oracle TimesTen7
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/TimesTen7Platform.html <tt>TimesTen7Platform</tt>]
 +
</td>
 +
<td>Provides Oracle TimesTen 7 database specific behavior.
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>PointBase
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/PointBasePlatform.html <tt>PointBasePlatform</tt>]
 +
</td>
 +
<td>Provides PointBase database specific behavior.
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>PostgreSQL
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/PostgreSQLPlatform.html <tt>PostgreSQLPlatform</tt>]
 +
</td>
 +
<td>
 +
* Native SQL for Date, Time, & Timestamp
 +
* Native sequencing
 +
* Mapping of class types to database types for the schema framework
 +
* Pessimistic locking
 +
* Platform specific operators
 +
* LIMIT/OFFSET query syntax for select statements
 +
See also [[EclipseLink/FAQ/JPA/PostgreSQL|PostgreSQL]]
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>SAP MaxDB
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/MaxDBPlatform.html <tt>MaxDBPlatform</tt>]
 +
</td>
 +
<td>See [http://wiki.eclipse.org/EclipseLink/Development/DatabasePlatform/MaxDBPlatform MaxDBPlatform].
 +
</td>
 +
<td>.
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>SAP SyBase SQLAnywhere
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/SQLAnywherePlatform.html <tt>SQLAnywherePlatform</tt>]
 +
</td>
 +
<td>Provides SQL Anywhere specific behaviour.
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>Sybase
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/SybasePlatform.html <tt>SybasePlatform</tt>]
 +
</td>
 +
<td>
 +
* Native SQL for byte[], Date, Time, & Timestamp
 +
* Native sequencing using @@IDENTITY
 +
</td>
 +
</tr>
 +
<tr valign="top">
 +
<td>Fujitsu Symfoware
 +
</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/database/SymfowarePlatform.html <tt>SymfowarePlatform</tt>]
 +
</td>
 +
<td>
 +
* DDL Generation
 +
* Outer Join
 +
* Subquery (with limitations)
 +
* Stored Procedure Calls
 +
* Stored Procedure Generation
 +
* Native Sequences/Identifier fields
 +
* JPA Bulk Update/Delete (with limitations)
 +
* Batch Reading
 +
* Batch Writing
 +
* Pessimistic Locking (with limitations)
 +
* First Result/Limit (with limitations)
 +
* Expression Framework (with limitations)
 +
* Delimiters
 +
* Auto Detection
 +
See also [[EclipseLink/Development/Incubator/Extensions/SymfowarePlatform|Fujitsu Symfoware Support]]
 +
</td>
 +
</tr>
 +
</table>
 +
 
 +
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 [[EclipseLink/Development/Incubator/Platform|Platform Incubator]].
 +
 
 +
==Application Server Support==
 
EclipseLink can be used with ''any'' Java EE application server that meets the [[#What Are the Software Requirements|software requirements]] through the EclipseLink API.  
 
EclipseLink can be used with ''any'' Java EE application server that meets the [[#What Are the Software Requirements|software requirements]] through the EclipseLink API.  
  
There is EclipseLink-specific integration support for the following servers:
+
EclipseLink provides integration support for the following servers. See the Javadoc for more information. These classes are concrete subclasses of [http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/server/ServerPlatformBase.html org.eclipse.persistence.platform.server.ServerPlatformBase] responsible for representing server-specific behavior. These classes provide the behavior for the following:
* [[#Integrating EclipseLink with Oracle WebLogic Server|Oracle WebLogic Server]]
+
* Which external transaction controller to use
* [[#Integrating EclipseLink with Oracle Containers for J2EE (OC4J)|Oracle Containers for J2EE (OC4J)]]
+
* Whether or not to enable JTA (external transaction control)
* [[#Integrating EclipseLink with IBM WebSphere Application Server|IBM WebSphere Application Server]]
+
* How to register/unregister for runtime services (JMX/MBean)
* [[#Integrating EclipseLink with Sun Application Server|Sun Application Server]]
+
* Whether or not to enable runtime services
* [[#Integrating EclipseLink with JBoss Application Server|JBoss Application Server]]
+
* How to launch container Threads
* [[#Integrating EclipseLink with SAP NetWeaver Application Server|SAP NetWeaver Application Server]]
+
 
 +
 
 +
<table>
 +
<tr>
 +
<td>'''Server Name'''</td>
 +
<td>'''Javadoc'''</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>IBM WebSphere Application Server</td>
 +
<td>
 +
[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/server/was/WebSphere_6_1_Platform.html org.eclipse.persistence.platform.server.was.WebSphere_6_1_Platform]
 +
 
 +
[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/server/was/WebSphere_7_Platform.html org.eclipse.persistence.platform.server.was.WebSphere_7_Platform]
 +
 
 +
[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/server/was/WebSpherePlatform.html org.eclipse.persistence.platform.server.was.WebSpherePlatform]
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>JBoss Application Server
 +
</td>
 +
<td>
 +
[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/server/oc4j/Oc4jPlatform.html org.eclipse.persistence.platform.server.jboss.JBossPlatform]</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>Oracle Containers for J2EE (OC4J)</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/server/oc4j/Oc4jPlatform.html org.eclipse.persistence.platform.server.oc4j.Oc4jPlatform]
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>Oracle Sun Application Server</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/server/sunas/package-summary.html org.eclipse.persistence.platform.server.sunas]</td>
 +
<td>.
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>Oracle WebLogic Server</td>
 +
<td>
 +
[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/server/wls/WebLogic_10_Platform.html org.eclipse.persistence.platform.server.wls.WebLogic_10_Platform]
 +
 
 +
[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/server/wls/WebLogic_9_Platform.html org.eclipse.persistence.platform.server.wls.WebLogic_9_Platform]
 +
 
 +
[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/server/wls/WebLogicPlatform.html org.eclipse.persistence.platform.server.wls.WebLogicPlatform]
 +
</td>
 +
</tr>
 +
 
 +
<tr valign="top">
 +
<td>SAP NetWeaver Application Server</td>
 +
<td>[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/platform/server/sap/SAPNetWeaver_7_1_Platform.html org.eclipse.persistence.platform.server.sap.SAPNetWeaver_7_1_Platform]</td>
 +
</tr>
 +
 
 +
</table>
  
  
 
{{EclipseLink_JPA
 
{{EclipseLink_JPA
 
|previous=[[EclipseLink/UserGuide/JPA/Advanced_JPA_Development/Performance/Fetch Groups|Fetch Groups]]
 
|previous=[[EclipseLink/UserGuide/JPA/Advanced_JPA_Development/Performance/Fetch Groups|Fetch Groups]]
|next=    [[EclipseLink/UserGuide/JPA/Advanced_JPA_Development/Platform Specific Configurations/Oracle|Oracle]]
+
|next=    [[EclipseLink/UserGuide/JPA/Advanced_JPA_Development/Dynamic|Dynamic]]
 
|up=      [[EclipseLink/UserGuide/JPA/Advanced_JPA_Development|Advanced JPA Development]]
 
|up=      [[EclipseLink/UserGuide/JPA/Advanced_JPA_Development|Advanced JPA Development]]
|version=2.2.0 DRAFT}}
+
}}

Latest revision as of 07:59, 17 April 2013



Warning This page is now obsolete.

For current information, please see "Database Support" in the EclipseLink Concepts Guide: http://www.eclipse.org/eclipselink/documentation/latest/concepts/app_tl_ext001.htm





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.

The following databases are supported. Click the names below to see the Javadoc that describes the support for that platform. The classes are in the org.eclipse.persistence.platform.database package.

Supported Database Platforms
Database JavaDoc Features
Apache Derby DerbyPlatform Provides Derby specific behavior.
Attunity AttunityPlatform Platform class that works with Attunity's Connect JDBC driver.
dBASE DBasePlatform Provides dBASE specific behavior, including:
  • Writes Time & Timestamp as strings (because they are not supported)
Firebird FirebirdPlatform Provides Firebird specific behavior.
H2 H2Platform Provides H2 specific behavior.
HyperSQL DataBase (HSQL) HSQLPlatform Provides HSQL specific behavior. Supports HSQL functionality as of 1.8.1. Features include:
  • DDL creation
  • IDENTITY sequencing
  • SEQUENCE objects
  • Functions
  • Pagination
IBM Cloudscape CloudscapePlatform Provides CloudScape DBMS specific behavior.
IBM DB2 Mainframe DB2MainframePlatform Provides DB2 Mainframe specific behavior. This provides for some additional compatibility in certain DB2 versions on OS390. Features include:
  • Specialized CONCAT syntax
IBM DB2 DB2Platform Provides DB2 specific behavior, including:
  • Schema creation
  • Native SQL for byte[], Date, Time, & Timestamp
  • Table qualified names.
  • Stored procedures
  • Temporary tables
  • Casting
  • Database functions
  • Identity sequencing
  • SEQUENCE sequencing
IBM Informix InformixPlatform Provides Informix specific behavior, including:
  • Types for schema creation.
  • Native sequencing using @@SERIAL.
Microsoft Access AccessPlatformPlatform Provides Microsoft Access specific behavior. .
Microsoft SQLServer SQLServerPlatform Provides Microsoft SQL Server specific behavior, including:
  • Native SQL for byte[], Date, Time, & Timestamp.
  • Native sequencing using @@IDENTITY.
MySQL MySQLPlatform Provides MySQL specific behavior, including:
  • Native SQL for Date, Time, & Timestamp
  • Native sequencing
  • Mapping of class types to database types for the schema framework
  • Pessimistic locking
  • Platform specific operators
Oracle OraclePlatform Provides Oracle Database specific behavior, including:
  • LOB
  • NChar
  • XMLType
  • TIMESTAMP (TZ, LTZ)
  • Native batch writing
  • Structured object-relational data-types
  • PLSQL datatypes and stored procedures
  • VPD, RAC, proxy authentication
  • XDK XML parser
  • Hierarchical selects (Select by prior)
  • Returning clause
  • Flashback history and queries
  • Stored procedures, output parameters and output cursors
  • Stored functions
  • Oracle AQ
Oracle JavaDB JavaDBPlatform Allows to use JavaDBPlatform as a synonym for DerbyPlatform
Oracle TimesTen TimesTenPlatform Provides Oracle TimesTen database specific behavior.
Oracle TimesTen7 TimesTen7Platform Provides Oracle TimesTen 7 database specific behavior.
PointBase PointBasePlatform Provides PointBase database specific behavior.
PostgreSQL PostgreSQLPlatform
  • Native SQL for Date, Time, & Timestamp
  • Native sequencing
  • Mapping of class types to database types for the schema framework
  • Pessimistic locking
  • Platform specific operators
  • LIMIT/OFFSET query syntax for select statements

See also PostgreSQL

SAP MaxDB MaxDBPlatform See MaxDBPlatform. .
SAP SyBase SQLAnywhere SQLAnywherePlatform Provides SQL Anywhere specific behaviour.
Sybase SybasePlatform
  • Native SQL for byte[], Date, Time, & Timestamp
  • Native sequencing using @@IDENTITY
Fujitsu Symfoware SymfowarePlatform
  • DDL Generation
  • Outer Join
  • Subquery (with limitations)
  • Stored Procedure Calls
  • Stored Procedure Generation
  • Native Sequences/Identifier fields
  • JPA Bulk Update/Delete (with limitations)
  • Batch Reading
  • Batch Writing
  • Pessimistic Locking (with limitations)
  • First Result/Limit (with limitations)
  • Expression Framework (with limitations)
  • Delimiters
  • Auto Detection

See also Fujitsu Symfoware Support

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.

Application Server Support

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

EclipseLink provides integration support for the following servers. See the Javadoc for more information. These classes are concrete subclasses of org.eclipse.persistence.platform.server.ServerPlatformBase responsible for representing server-specific behavior. These classes provide the behavior for the following:

  • Which external transaction controller to use
  • Whether or not to enable JTA (external transaction control)
  • How to register/unregister for runtime services (JMX/MBean)
  • Whether or not to enable runtime services
  • How to launch container Threads


Server Name Javadoc
IBM WebSphere Application Server

org.eclipse.persistence.platform.server.was.WebSphere_6_1_Platform

org.eclipse.persistence.platform.server.was.WebSphere_7_Platform

org.eclipse.persistence.platform.server.was.WebSpherePlatform

JBoss Application Server org.eclipse.persistence.platform.server.jboss.JBossPlatform
Oracle Containers for J2EE (OC4J) org.eclipse.persistence.platform.server.oc4j.Oc4jPlatform
Oracle Sun Application Server org.eclipse.persistence.platform.server.sunas .
Oracle WebLogic Server

org.eclipse.persistence.platform.server.wls.WebLogic_10_Platform

org.eclipse.persistence.platform.server.wls.WebLogic_9_Platform

org.eclipse.persistence.platform.server.wls.WebLogicPlatform

SAP NetWeaver Application Server org.eclipse.persistence.platform.server.sap.SAPNetWeaver_7_1_Platform


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

Back to the top