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 "Configuring a Relational Descriptor (ELUG)"

m (How to Configure Custom SQL Queries for Basic Persistence Operations Using Java)
m (227400)
 
(2 intermediate revisions by one other user not shown)
Line 287: Line 287:
 
[[Image:support.gif|Supported]]
 
[[Image:support.gif|Supported]]
 
|}
 
|}
 
  
  
Line 296: Line 295:
 
==Configuring Associated Tables==
 
==Configuring Associated Tables==
 
Each relational class descriptor (see [[Creating%20a%20Relational%20Descriptor%20(ELUG)|Creating Relational Class Descriptors]]) must be associated with a database table for storing instances of that class. This does not apply to relational aggregate descriptors (see [[Creating%20a%20Relational%20Descriptor%20(ELUG)|Creating Relational Aggregate Descriptors]]).
 
Each relational class descriptor (see [[Creating%20a%20Relational%20Descriptor%20(ELUG)|Creating Relational Class Descriptors]]) must be associated with a database table for storing instances of that class. This does not apply to relational aggregate descriptors (see [[Creating%20a%20Relational%20Descriptor%20(ELUG)|Creating Relational Aggregate Descriptors]]).
 
  
  
Line 307: Line 305:
 
# Use the '''Associated Table''' list to select a database table for the descriptor. You must associate a descriptor with a database table ''before'' specifying primary keys.
 
# Use the '''Associated Table''' list to select a database table for the descriptor. You must associate a descriptor with a database table ''before'' specifying primary keys.
  
'''See Also'''
+
See Also:
 
: [[#Configuring Associated Tables|Configuring Associated Tables]]
 
: [[#Configuring Associated Tables|Configuring Associated Tables]]
 
: [[Configuring%20a%20Descriptor%20(ELUG)|Configuring a Descriptor]]
 
: [[Configuring%20a%20Descriptor%20(ELUG)|Configuring a Descriptor]]
 
  
  
Line 338: Line 335:
  
 
For more information, see [[Introduction%20to%20Relational%20Projects%20(ELUG)#Sequencing in Relational Projects|Sequencing in Relational Projects]].
 
For more information, see [[Introduction%20to%20Relational%20Projects%20(ELUG)#Sequencing in Relational Projects|Sequencing in Relational Projects]].
 
  
  
Line 377: Line 373:
 
|}
 
|}
  
'''See Also'''
+
See Also:
 
: [[Configuring%20a%20Descriptor%20(ELUG)|Configuring a Descriptor]]
 
: [[Configuring%20a%20Descriptor%20(ELUG)|Configuring a Descriptor]]
 
: [[Configuring%20a%20Relational%20Project%20(ELUG)|Configuring Sequencing at the Project Level]]
 
: [[Configuring%20a%20Relational%20Project%20(ELUG)|Configuring Sequencing at the Project Level]]
 
: [[Configuring%20a%20Database%20Login%20(ELUG)|Configuring Sequencing at the Session Level]]
 
: [[Configuring%20a%20Database%20Login%20(ELUG)|Configuring Sequencing at the Session Level]]
 
 
  
  
Line 394: Line 388:
 
<span id="Example 28-1"></span>
 
<span id="Example 28-1"></span>
 
''''' Example Sequences'''''
 
''''' Example Sequences'''''
 +
<source lang="java">
 
  dbLogin.addSequence(new TableSequence("EMP_SEQ", 25));
 
  dbLogin.addSequence(new TableSequence("EMP_SEQ", 25));
 
  dbLogin.addSequence(new DefaultSequence("PHONE_SEQ", 30));
 
  dbLogin.addSequence(new DefaultSequence("PHONE_SEQ", 30));
 
  dbLogin.addSequence(new UnaryTableSequence("ADD_SEQ", 55));
 
  dbLogin.addSequence(new UnaryTableSequence("ADD_SEQ", 55));
 
  dbLogin.addSequence(new NativeSequence("NAT_SEQ", 10));
 
  dbLogin.addSequence(new NativeSequence("NAT_SEQ", 10));
 
+
</source>
 
+
  
 
Using Java code, you can perform the following sequence configurations:
 
Using Java code, you can perform the following sequence configurations:
Line 405: Line 399:
 
* [[#Configuring the Same Sequence for Multiple Descriptors|Configuring the Same Sequence for Multiple Descriptors]]
 
* [[#Configuring the Same Sequence for Multiple Descriptors|Configuring the Same Sequence for Multiple Descriptors]]
 
* [[#Configuring the Platform Default Sequence|Configuring the Platform Default Sequence]]
 
* [[#Configuring the Platform Default Sequence|Configuring the Platform Default Sequence]]
 
  
  
Line 414: Line 407:
 
<span id="Example 28-2"></span>
 
<span id="Example 28-2"></span>
 
''''' Associating a Sequence with a Descriptor'''''
 
''''' Associating a Sequence with a Descriptor'''''
  empDescriptor.setSequenceNumberFieldName("EMP_ID"); '''// primary key field'''
+
<source lang="java">
 +
  empDescriptor.setSequenceNumberFieldName("EMP_ID"); // primary key field
 
  empDescriptor.setSequenceNumberName("EMP_SEQ");
 
  empDescriptor.setSequenceNumberName("EMP_SEQ");
 
+
</source>
 
+
  
 
====Configuring the Same Sequence for Multiple Descriptors====
 
====Configuring the Same Sequence for Multiple Descriptors====
Line 425: Line 418:
 
<span id="Example 28-3"></span>
 
<span id="Example 28-3"></span>
 
'''''Configuring a Sequence for Multiple Descriptors'''''
 
'''''Configuring a Sequence for Multiple Descriptors'''''
  empDescriptor.setSequenceNumberFieldName("EMP_ID"); '''// primary key field'''
+
<source lang="java">
 +
  empDescriptor.setSequenceNumberFieldName("EMP_ID"); // primary key field
 
  empDescriptor.setSequenceNumberName("NAT_SEQ");
 
  empDescriptor.setSequenceNumberName("NAT_SEQ");
  phoneDescriptor.setSequenceNumberFieldName("PHONE_ID"); '''// primary key field'''
+
  phoneDescriptor.setSequenceNumberFieldName("PHONE_ID"); // primary key field
 
  phoneDescriptor.setSequenceNumberName("NAT_SEQ");
 
  phoneDescriptor.setSequenceNumberName("NAT_SEQ");
 
+
</source>
 
+
  
 
====Configuring the Platform Default Sequence====
 
====Configuring the Platform Default Sequence====
Line 438: Line 431:
 
<span id="Example 28-4"></span>
 
<span id="Example 28-4"></span>
 
''''' Configuring a Default Sequence'''''
 
''''' Configuring a Default Sequence'''''
  descriptor.setSequenceNumberFieldName("EMP_ID"); '''// primary key field'''
+
<source lang="java">
 +
  descriptor.setSequenceNumberFieldName("EMP_ID"); // primary key field
 
  descriptor.setSequenceNumberName("NEW_SEQ");
 
  descriptor.setSequenceNumberName("NEW_SEQ");
 
+
</source>
  
  
Line 458: Line 452:
  
 
You can define a custom SQL string or <tt>Call</tt> object for insert, update, delete, read-object, read-all, and does-exist [[#How to Configure Custom SQL Queries for Basic Persistence Operations Using Java|using Java]]. Using a <tt>Call</tt>, you can define more complex SQL strings and invoke custom stored procedures.
 
You can define a custom SQL string or <tt>Call</tt> object for insert, update, delete, read-object, read-all, and does-exist [[#How to Configure Custom SQL Queries for Basic Persistence Operations Using Java|using Java]]. Using a <tt>Call</tt>, you can define more complex SQL strings and invoke custom stored procedures.
 +
  
 
{| class="Note oac_no_warn" width="80%" border="1" frame="hsides" rules="groups" cellpadding="3" frame="hsides" rules="groups"
 
{| class="Note oac_no_warn" width="80%" border="1" frame="hsides" rules="groups" cellpadding="3" frame="hsides" rules="groups"
Line 472: Line 467:
 
''''''Note''''':  EclipseLink does not validate the SQL code that you enter. Enter the SQL code appropriate for your database platform (see [[Introduction%20to%20Data%20Access%20(ELUG)|Data Source Platform Types]]).
 
''''''Note''''':  EclipseLink does not validate the SQL code that you enter. Enter the SQL code appropriate for your database platform (see [[Introduction%20to%20Data%20Access%20(ELUG)|Data Source Platform Types]]).
 
|}
 
|}
 
  
  
Line 517: Line 511:
 
To customize other <tt>Session</tt> <tt>readAll</tt> method signatures, define additional named queries and use them in your application instead of the Session methods.
 
To customize other <tt>Session</tt> <tt>readAll</tt> method signatures, define additional named queries and use them in your application instead of the Session methods.
 
|}
 
|}
 +
  
 
===How to Configure Custom SQL Queries for Basic Persistence Operations Using Java===
 
===How to Configure Custom SQL Queries for Basic Persistence Operations Using Java===
Line 626: Line 621:
 
<span id="Example 28-5"></span>
 
<span id="Example 28-5"></span>
 
''''' Configuring a Descriptor Query Manager with Custom SQL Strings'''''
 
''''' Configuring a Descriptor Query Manager with Custom SQL Strings'''''
 +
<source lang="java">
 
  public static void addToDescriptor(ClassDescriptor descriptor) {
 
  public static void addToDescriptor(ClassDescriptor descriptor) {
 
   
 
   
     '''// Read-object by primary key procedure'''
+
     // Read-object by primary key procedure
 
     descriptor.getQueryManager().setReadObjectSQLString(
 
     descriptor.getQueryManager().setReadObjectSQLString(
 
                       "select * from EMP where EMP_ID = #EMP_ID");
 
                       "select * from EMP where EMP_ID = #EMP_ID");
 
   
 
   
     '''// Read-all instances procedure'''
+
     // Read-all instances procedure
 
     descriptor.getQueryManager().setReadAllSQLString("select * from EMP");
 
     descriptor.getQueryManager().setReadAllSQLString("select * from EMP");
 
   
 
   
     '''// Insert procedure'''
+
     // Insert procedure
 
     descriptor.getQueryManager().setInsertSQLString(
 
     descriptor.getQueryManager().setInsertSQLString(
 
                         "insert into EMP (EMP_ID, F_NAME, L_NAME, MGR_ID) values
 
                         "insert into EMP (EMP_ID, F_NAME, L_NAME, MGR_ID) values
 
                         (#EMP_ID, #F_NAME, #L_NAME, #MGR_ID)");
 
                         (#EMP_ID, #F_NAME, #L_NAME, #MGR_ID)");
 
   
 
   
     '''// Update procedure'''
+
     // Update procedure
 
     descriptor.getQueryManager().setUpdateSQLString(
 
     descriptor.getQueryManager().setUpdateSQLString(
 
                         "update EMP set (F_NAME, L_NAME, MGR_ID) values
 
                         "update EMP set (F_NAME, L_NAME, MGR_ID) values
 
                         (#F_NAME, #L_NAME, #MGR_ID) where EMP_ID = #EMP_ID");
 
                         (#F_NAME, #L_NAME, #MGR_ID) where EMP_ID = #EMP_ID");
 
  }
 
  }
+
</source>
  
 
The [[#Example 28-6|Configuring a Descriptor Query Manager with Custom Stored Procedure Calls]] example shows how to implement an amendment method to configure a descriptor query manager to use Oracle stored procedures using a <tt>StoredProcedureCall</tt> (see [[Using%20Basic%20Query%20API%20(ELUG)#Using a StoredProcedureCall|Using a StoredProcedureCall]]). This example uses output cursors to return the result set (see [[Using%20Advanced%20Query%20API%20(ELUG)#Handling Cursor and Stream Query Results|Handling Cursor and Stream Query Results]]).
 
The [[#Example 28-6|Configuring a Descriptor Query Manager with Custom Stored Procedure Calls]] example shows how to implement an amendment method to configure a descriptor query manager to use Oracle stored procedures using a <tt>StoredProcedureCall</tt> (see [[Using%20Basic%20Query%20API%20(ELUG)#Using a StoredProcedureCall|Using a StoredProcedureCall]]). This example uses output cursors to return the result set (see [[Using%20Advanced%20Query%20API%20(ELUG)#Handling Cursor and Stream Query Results|Handling Cursor and Stream Query Results]]).
Line 652: Line 648:
 
<span id="Example 28-6"></span>
 
<span id="Example 28-6"></span>
 
''''' Configuring a Descriptor Query Manager with Custom Stored Procedure Calls'''''
 
''''' Configuring a Descriptor Query Manager with Custom Stored Procedure Calls'''''
 +
<source lang="java">
 
  public static void addToDescriptor(ClassDescriptor descriptor) {
 
  public static void addToDescriptor(ClassDescriptor descriptor) {
 
    
 
    
     '''// Read-object by primary key procedure'''
+
     // Read-object by primary key procedure
 
     StoredProcedureCall readCall = new StoredProcedureCall();
 
     StoredProcedureCall readCall = new StoredProcedureCall();
 
     readCall.setProcedureName("READ_EMP");
 
     readCall.setProcedureName("READ_EMP");
Line 661: Line 658:
 
     descriptor.getQueryManager().setReadObjectCall(readCall);
 
     descriptor.getQueryManager().setReadObjectCall(readCall);
 
    
 
    
     '''// Read-all instances procedure'''
+
     // Read-all instances procedure
 
     StoredProcedureCall readAllCall = new StoredProcedureCall();
 
     StoredProcedureCall readAllCall = new StoredProcedureCall();
 
     readAllCall.setProcedureName("READ_ALL_EMP");
 
     readAllCall.setProcedureName("READ_ALL_EMP");
Line 667: Line 664:
 
     descriptor.getQueryManager().setReadAllCall(readAllCall );
 
     descriptor.getQueryManager().setReadAllCall(readAllCall );
 
    
 
    
     '''// Insert procedure'''
+
     // Insert procedure
 
     StoredProcedureCall insertCall = new StoredProcedureCall();
 
     StoredProcedureCall insertCall = new StoredProcedureCall();
 
     insertCall.setProcedureName("INSERT_EMP");
 
     insertCall.setProcedureName("INSERT_EMP");
Line 676: Line 673:
 
     descriptor.getQueryManager().setInsertCall(insertCall);
 
     descriptor.getQueryManager().setInsertCall(insertCall);
 
    
 
    
     '''// Update procedure'''
+
     // Update procedure
 
     StoredProcedureCall updateCall = new StoredProcedureCall();
 
     StoredProcedureCall updateCall = new StoredProcedureCall();
 
     updateCall.setProcedureName("UPDATE_EMP");
 
     updateCall.setProcedureName("UPDATE_EMP");
Line 685: Line 682:
 
     descriptor.getQueryManager().setUpdateCall(updateCall);
 
     descriptor.getQueryManager().setUpdateCall(updateCall);
 
  }
 
  }
 +
</source>
 +
  
 
==Configuring Interface Alias==
 
==Configuring Interface Alias==
Line 690: Line 689:
  
 
Each descriptor can have one interface alias. Use the interface in queries and relationship mappings.
 
Each descriptor can have one interface alias. Use the interface in queries and relationship mappings.
 
  
  
Line 697: Line 695:
 
'''''Note''''':  If you use an interface alias, do not associate an interface descriptor with the interface.
 
'''''Note''''':  If you use an interface alias, do not associate an interface descriptor with the interface.
 
|}
 
|}
 
  
  
 
This section includes information on configuring an interface alias. Interfaces cannot be ''created'' in the Workbench; you must add the Java package or class to your Workbench project before configuring it.
 
This section includes information on configuring an interface alias. Interfaces cannot be ''created'' in the Workbench; you must add the Java package or class to your Workbench project before configuring it.
 
  
  
Line 711: Line 707:
  
  
'''See Also'''
+
See Also:
 
: [[Configuring%20a%20Descriptor%20(ELUG)|Configuring a Descriptor]]
 
: [[Configuring%20a%20Descriptor%20(ELUG)|Configuring a Descriptor]]
 
: [[Creating%20a%20Descriptor%20(ELUG)|Creating a Descriptor]]
 
: [[Creating%20a%20Descriptor%20(ELUG)|Creating a Descriptor]]
 
: [[Introduction%20to%20Descriptors%20(ELUG)|Introduction to Descriptors]]
 
: [[Introduction%20to%20Descriptors%20(ELUG)|Introduction to Descriptors]]
 
  
  
Line 724: Line 719:
 
<span id="Example 28-7"></span>
 
<span id="Example 28-7"></span>
 
''''' Configuring an Interface Alias'''''
 
''''' Configuring an Interface Alias'''''
 +
<source lang="java">
 
  public static void addToDescriptor(Descriptor descriptor) {
 
  public static void addToDescriptor(Descriptor descriptor) {
 
     descriptor.getInterfacePolicy().addParentInterface(MyInterface.class);
 
     descriptor.getInterfacePolicy().addParentInterface(MyInterface.class);
 
  }
 
  }
 +
</source>
 +
  
 
==Configuring a Relational Descriptor as a Class or Aggregate Type==
 
==Configuring a Relational Descriptor as a Class or Aggregate Type==
Line 738: Line 736:
  
 
For more information, see [[Introduction%20to%20XML%20Descriptors%20(ELUG)#XML Descriptors and Aggregation|XML Descriptors and Aggregation]].
 
For more information, see [[Introduction%20to%20XML%20Descriptors%20(ELUG)#XML Descriptors and Aggregation|XML Descriptors and Aggregation]].
 
  
  
Line 744: Line 741:
 
To configure a relational descriptor as class or aggregate, use this procedure.
 
To configure a relational descriptor as class or aggregate, use this procedure.
 
# In the '''Navigator''', select a relational descriptor.
 
# In the '''Navigator''', select a relational descriptor.
# Click the '''Class''' or '''Aggregate''' descriptor button on the mapping toolbar.You can also select the descriptor and choose '''Selected''' > '''Descriptor Type''' > '''Class''' or '''Aggregate''' from the menu or by right-clicking on the descriptor in the '''Navigator''' window and selecting '''Descriptor Type''' > '''Class''' or '''Aggregate''' from the context menu.
+
# Click the '''Class''' or '''Aggregate''' descriptor button on the mapping toolbar.<br>You can also select the descriptor and choose '''Selected''' > '''Descriptor Type''' > '''Class''' or '''Aggregate''' from the menu or by right-clicking on the descriptor in the '''Navigator''' window and selecting '''Descriptor Type''' > '''Class''' or '''Aggregate''' from the context menu.
 
# [[Image:dtfmpbtn.gif|Direct to Field Mapping button]] If you select '''Aggregate''', specify each of the aggregate descriptor's attributes as a direct to field mapping. See [[Configuring%20a%20Relational%20Direct-to-Field%20Mapping (ELUG)|Configuring a Relational Direct-to-Field Mapping]] for more information.
 
# [[Image:dtfmpbtn.gif|Direct to Field Mapping button]] If you select '''Aggregate''', specify each of the aggregate descriptor's attributes as a direct to field mapping. See [[Configuring%20a%20Relational%20Direct-to-Field%20Mapping (ELUG)|Configuring a Relational Direct-to-Field Mapping]] for more information.
  
Line 751: Line 748:
 
Although the attributes of a target class are not mapped directly to a data source until you configure an aggregate object mapping, you must still specify their mapping type in the target class's descriptor. This tells EclipseLink what type of mapping to use when you do configure the aggregate mapping in the source object's descriptor. For more information, see [[Introduction%20to%20Relational%20Descriptors%20(ELUG)#Aggregate and Composite Descriptors in Relational Projects|Aggregate and Composite Descriptors in Relational Projects]].
 
Although the attributes of a target class are not mapped directly to a data source until you configure an aggregate object mapping, you must still specify their mapping type in the target class's descriptor. This tells EclipseLink what type of mapping to use when you do configure the aggregate mapping in the source object's descriptor. For more information, see [[Introduction%20to%20Relational%20Descriptors%20(ELUG)#Aggregate and Composite Descriptors in Relational Projects|Aggregate and Composite Descriptors in Relational Projects]].
  
'''See Also'''
+
See Also:
 
: [[Configuring%20a%20Descriptor%20(ELUG)|Configuring a Descriptor]]
 
: [[Configuring%20a%20Descriptor%20(ELUG)|Configuring a Descriptor]]
 
: [[#Configuring a Relational Descriptor as a Class or Aggregate Type|Configuring a Relational Descriptor as a Class or Aggregate Type]]
 
: [[#Configuring a Relational Descriptor as a Class or Aggregate Type|Configuring a Relational Descriptor as a Class or Aggregate Type]]
 
  
  
Line 774: Line 770:
  
 
For complex multitable situations, a more complex join expression may be required. These include requiring the join to also check a type code, or using an outer-join. EclipseLink provides support for a multiple-table-join-expression for these cases (see [[#How to Configure Multitable Information Using Java|How to Configure Multitable Information Using Java]]).
 
For complex multitable situations, a more complex join expression may be required. These include requiring the join to also check a type code, or using an outer-join. EclipseLink provides support for a multiple-table-join-expression for these cases (see [[#How to Configure Multitable Information Using Java|How to Configure Multitable Information Using Java]]).
 
  
  
Line 802: Line 797:
 
* '''Reference'''–when associating an additional table to the primary table with a '''Reference''' (that is, a foreign key), you can specify the '''Table Reference''', as well as the '''Source''' and '''Target''' fields. Continue with [[#Associating Tables with References|Associating Tables with References]].
 
* '''Reference'''–when associating an additional table to the primary table with a '''Reference''' (that is, a foreign key), you can specify the '''Table Reference''', as well as the '''Source''' and '''Target''' fields. Continue with [[#Associating Tables with References|Associating Tables with References]].
 
|}
 
|}
 
  
  
Line 816: Line 810:
  
 
Choose a '''Table Reference''' that defines how the primary keys of the primary table relate to the primary keys of the selected table. Click '''Add''' to add a primary key association.
 
Choose a '''Table Reference''' that defines how the primary keys of the primary table relate to the primary keys of the selected table. Click '''Add''' to add a primary key association.
 
 
 
  
  

Latest revision as of 09:40, 20 May 2009

Related Topics

For information on how to create relational descriptors, see Creating a Relational Descriptor.

This table lists the default configurable options for a relational descriptor.


Option to Configure Workbench Java

Associated tables

Supported

Supported

Primary keys

Supported

Supported

Sequencing

Supported

Supported

Read-only descriptors

Supported

Supported

Unit of work conforming

Supported

Supported

Descriptor alias

Supported

Unsupported.

Descriptor comments

Supported

Unsupported.

Classes

Supported

Unsupported.

Named queries

Supported

Supported

Custom SQL queries for basic persistence operations

Supported

Supported

Query timeout

Supported

Supported

Cache refreshing

Supported

Supported

Query keys

Supported

Supported

Interface query keys

Supported.

Supported.

Interface alias

Supported

Supported

Cache type and size

Supported

Supported

Cache isolation

Supported.

Supported.

Cache coordination change propagation

Supported.

Supported.

Cache expiration

Supported.

Supported.

Cache existence Checking

Supported.

Supported.

Relational descriptor as a class or aggregate type

Supported

Supported

Reading subclasses on queries

Supported

Supported

Inheritance for a child class descriptor

Supported.

Supported.

Inheritance for a parent class descriptor

Supported

Supported

Inheritance expressions for a parent class descriptor

Unsupported.

Supported

Inherited attribute mapping in a subclass

Supported.

Supported.

(see

Supported

Supported

Domain object method as an event handler

Supported.

Supported.

Descriptor event listener as an event handler

Supported.

Supported.

Locking policy

Supported

Supported

Returning policy

Supported

Supported

Instantiation policy

Supported

Supported

Copy policy

Supported

Supported

Change policy

Unsupported.

Supported.

History policy

Unsupported.

Supported

Wrapper policy

Unsupported.

Supported

Fetch groups

Unsupported.

Supported.

Amendment methods

Supported

Unsupported.

Mappings

Supported

Supported


For more information, see Introduction to Relational Descriptors.


Configuring Associated Tables

Each relational class descriptor (see Creating Relational Class Descriptors) must be associated with a database table for storing instances of that class. This does not apply to relational aggregate descriptors (see Creating Relational Aggregate Descriptors).


How to Configure Associated Tables Using Workbench

To associate a descriptor with a database table, use this procedure:

  1. Select a descriptor in the Navigator. Its properties appear in the Editor.
  2. Click the Descriptor Info tab. The Descriptor Info tab appears.
    Descriptor Info Tab, Associated Table Options
    Descriptor Info Tab, Associated Table Options
  3. Use the Associated Table list to select a database table for the descriptor. You must associate a descriptor with a database table before specifying primary keys.

See Also:

Configuring Associated Tables
Configuring a Descriptor


How to Configure Associated Tables Using Java

To configure a descriptor's associated table(s) using Java, use RelationalDescriptor methods setTableName or addTableName.


Configuring Sequencing at the Descriptor Level

Sequencing allows EclipseLink to automatically assign the primary key or ID of an object when the object is inserted.

You configure EclipseLink sequencing at the project level or session level to tell EclipseLink how to obtain sequence values: that is, what type of sequences to use.

To enable sequencing, you must then configure EclipseLink sequencing at the descriptor level to tell EclipseLink into which table and column to write the sequence value when an instance of a descriptor's reference class is created.

Only descriptors that have been configured with a sequence field and a sequence name will be assigned sequence numbers.

The sequence field is the database field that the sequence number will be assigned to: this is almost always the primary key field. The sequence name is the name of the sequence to be used for this descriptor. The purpose of the sequence name depends on the type of sequencing you are using:

When using table sequencing, the sequence name refers to the row's SEQ_NAME value used to store this sequence.

When using Oracle native sequencing, the sequence name refers to the Oracle sequence object that has been created in the database. When using native sequencing on other databases, the sequence name does not have any direct meaning, but should still be set for compatibility.

The sequence name can also refer to a custom sequence defined in the project.

For more information, see Sequencing in Relational Projects.


How to Configure Sequencing at the Descriptor Level Using Workbench

To configure sequencing for a descriptor, use this procedure:

  1. Select a descriptor in the Navigator. Its properties appear in the Editor.
  2. Click the Descriptor Info tab. The Descriptor Info tab appears.
    Descriptor Info Tab, Sequencing Options
    Descriptor Info Tab, Sequencing Options
  3. Complete the Sequencing options on the tab.

Use the following information to specify sequencing options:

Field Description
Use Sequencing Specify if this descriptor uses sequencing. If selected, specify the Name, Table, and Field for sequencing.
Name

Enter the name of the sequence.

  • For table sequencing: Enter the name of the value in the sequence name column (for default table sequencing, the column named SEQ_NAME) of the sequence table (for default table sequencing, the table named SEQUENCE) that EclipseLink uses to look up the corresponding sequence count value (for default table sequencing, the corresponding value in the SEQ_COUNT column) for this descriptor's reference class. For more information, see Table Sequencing.
  • For native sequencing (Oracle platform): Enter the name of the sequence object that Oracle Database creates to manage sequencing for this descriptor's reference class. For more information, see Native Sequencing with an Oracle Database Platform
  • For native sequencing (non-Oracle platform): For database compatibility, enter a generic name for the sequence, such as SEQ. For more information, see Native Sequencing with a Non-Oracle Database Platform.
Table
Specify the name of the database table that contains the field (see Field) into which EclipseLink is to write the sequence value when a new instance of this descriptor's reference class is created. This is almost always this descriptor's primary table.
Field

Specify the name of the field in the specified table (see Table) into which EclipseLink is to write the sequence value when a new instance of this descriptor's reference class is created. This field is almost always the class's primary key (see Configuring Primary Keys).

See Also:

Configuring a Descriptor
Configuring Sequencing at the Project Level
Configuring Sequencing at the Session Level


How to Configure Sequencing at the Descriptor Level Using Java

Using Java, you can configure sequencing to use multiple different types of sequence for different descriptors. You configure the sequence objects on the session's login and reference them from the descriptor by their name. The descriptor's sequence name refers to the sequence object's name you register in the session's login.

The following examples assume the session sequence configuration shown in this example:


Example Sequences

 dbLogin.addSequence(new TableSequence("EMP_SEQ", 25));
 dbLogin.addSequence(new DefaultSequence("PHONE_SEQ", 30));
 dbLogin.addSequence(new UnaryTableSequence("ADD_SEQ", 55));
 dbLogin.addSequence(new NativeSequence("NAT_SEQ", 10));

Using Java code, you can perform the following sequence configurations:


Configuring a Sequence by Name

As the Associating a Sequence with a Descriptor example shows, you associate a sequence with a descriptor by sequence name. The sequence EMP_SEQ was added to the login for this project in the Example Sequences example. When a new instance of the Employee class is created, the EclipseLink runtime will use the sequence named EMP_SEQ (in this example, a TableSequence) to obtain a value for the EMP_ID field.


Associating a Sequence with a Descriptor

 empDescriptor.setSequenceNumberFieldName("EMP_ID"); // primary key field
 empDescriptor.setSequenceNumberName("EMP_SEQ");

Configuring the Same Sequence for Multiple Descriptors

As the Configuring a Sequence for Multiple Descriptors example shows, you can associate the same sequence with more than one descriptor. In this example, both the Employee descriptor and Phone descriptor use the same NativeSequence. Having descriptors share the same sequence can improve pre-allocation performance. For more information on pre-allocation, see Sequencing and Preallocation Size.


Configuring a Sequence for Multiple Descriptors

 empDescriptor.setSequenceNumberFieldName("EMP_ID"); // primary key field
 empDescriptor.setSequenceNumberName("NAT_SEQ");
 phoneDescriptor.setSequenceNumberFieldName("PHONE_ID"); // primary key field
 phoneDescriptor.setSequenceNumberName("NAT_SEQ");

Configuring the Platform Default Sequence

In the Configuring a Default Sequence exmple, you associate a nonexistent sequence (NEW_SEQ) with a descriptor. Because you did not add a sequence named NEW_SEQ to the login for this project in the Example Sequences example, the EclipseLink runtime will create a DefaultSequence named NEW_SEQ for this descriptor. For more information about DefaultSequence, see Default Sequencing.


Configuring a Default Sequence

 descriptor.setSequenceNumberFieldName("EMP_ID"); // primary key field
 descriptor.setSequenceNumberName("NEW_SEQ");


Configuring Custom SQL Queries for Basic Persistence Operations

You can use EclipseLink to define an SQL query for each basic persistence operation (insert, update, delete, read-object, read-all, or does-exist) so that when you query and modify your relational-mapped objects, the EclipseLink runtime will use the appropriate SQL query instead of the default SQL query.

SQL strings can include any fields that the descriptor maps, as well as arguments. You specify arguments in the SQL string using #<arg-name>, such as:

select * from EMP where EMP_ID = #EMP_ID

The insert and update SQL strings can take any field that the descriptor maps as an argument.

The read-object, delete and does-exist SQL strings can only take the primary key fields as arguments.

The read-all SQL string must return all instances of the class and thus can take no arguments.

You can define a custom SQL string for insert, update, delete, read-object, and read-all using the Workbench.

You can define a custom SQL string or Call object for insert, update, delete, read-object, read-all, and does-exist using Java. Using a Call, you can define more complex SQL strings and invoke custom stored procedures.


Note: When you customize the update persistence operation for an application that uses optimistic locking (see Configuring Locking Policy), the custom update string must not write the object if the row version field has changed since the initial object was read. In addition, it must increment the version field if it writes the object successfully. For example:

update Employee set F_NAME = #F_NAME, VERSION = VERSION + 1 where (EMP_ID = #EMP_ID) AND (VERSION = #VERSION)

The update string must also maintain the row count of the database.


'Note: EclipseLink does not validate the SQL code that you enter. Enter the SQL code appropriate for your database platform (see Data Source Platform Types).


How to Configure Custom SQL Queries for Basic Persistence Operations Using Workbench

To configure custom SQL queries for basic persistence operations:

  1. In the Navigator, select a descriptor in a relational database project.
  2. Click the Queries tab in the Editor.
  3. Click the Custom SQL tab.
    Queries, Custom SQL Tab
    Queries, Custom SQL Tab
  4. Enter data on each tab on the Custom SQL tab.

Click the appropriate SQL function tab and type your own SQL string to control these actions for a descriptor. Use the following information to complete the tab:


Tab Description
Insert Defines the insert SQL that EclipseLink uses to insert a new object's data into the database.
Update

Defines the update SQL that EclipseLink uses to update any changed existing object's data in the database. When you define a descriptor's update query, you must conform to the following:

  • If the application uses optimistic locking, you must ensure that the row is not written if the version field has changed since the object was read.
  • The update query must increment the version field if the row is written.
  • The update string must maintain the row count of the database.
Delete Defines the delete SQL that EclipseLink uses to delete an object.
Read Object

Defines the read SQL that EclipseLink uses in any ReadObjectQuery, whose selection criteria is based on the object's primary key. When you define a descriptor's read-object query, your implementation overrides any ReadObjectQuery, whose selection criteria is based on the object's primary key. EclipseLink generates dynamic SQL for all other Session readObject method signatures.

To customize other Session readObject method signatures, define additional named queries and use them in your application instead of the Session methods.

Read All

Defines the read-all SQL that EclipseLink uses when you call Session method readAllObjects(java.lang.Class) passing in the java.lang.Class that this descriptor represents. When you define a descriptor's read-all query, your implementation overrides only the Session method readAll(java.lang.Class), not the version that takes a Class and Expression. As a result, this query reads every single instance. EclipseLink generates dynamic SQL for all other Session readAll method signatures.

To customize other Session readAll method signatures, define additional named queries and use them in your application instead of the Session methods.


How to Configure Custom SQL Queries for Basic Persistence Operations Using Java

The DescriptorQueryManager generates default SQL for the following persistence operations:

  • Insert
  • Update
  • Delete
  • Read-object
  • Read-all
  • Does-exist

Using Java code, you can use the descriptor query manager to provide custom SQL strings to perform these functions on a class-by-class basis.

Use ClassDescriptor method getQueryManager to acquire the DescriptorQueryManager, and then use the DescriptorQueryManager methods that this table lists.


Descriptor Query Manager Methods for Configuring Custom SQL

To Change the Default SQL for... Use Descriptor Query Manager Method...

Insert

setInsertQuery (InsertObjectQuery query)

setInsertSQLString (String sqlString)

setInsertCall(Call call)

Update

setUpdateQuery (UpdateObjectQuery query)

setUpdateSQLString (String sqlString)

setUpdateCall(Call call)

Delete

setDeleteQuery (DeleteObjectQuery query)

setDeleteSQLString (String sqlString)

setDeleteCall(Call call)

Read

setReadObjectQuery (ReadObjectQuery query)

setReadObjectSQLString (String sqlString)

setReadObjectCall(Call call)

Read all

setReadAllQuery (ReadAllQuery query)

setReadAllSQLString (String sqlString)

setReadAllCall(Call call)

Does exist

setDoesExistQuery(DoesExistQuery query)

setDoesExistSQLString(String sqlString)

setDoesExistCall(Call call)


The Configuring a Descriptor Query Manager with Custom SQL Strings example shows how to implement an amendment method to configure a descriptor query manager to use custom SQL strings. Alternatively, using an SQLCall, you can specify more complex SQL strings using features such as in, out, and in-out parameters and parameter types (see Using a SQLCall).


Configuring a Descriptor Query Manager with Custom SQL Strings

 public static void addToDescriptor(ClassDescriptor descriptor) {
 
     // Read-object by primary key procedure
     descriptor.getQueryManager().setReadObjectSQLString(
                       "select * from EMP where EMP_ID = #EMP_ID");
 
     // Read-all instances procedure
     descriptor.getQueryManager().setReadAllSQLString("select * from EMP");
 
     // Insert procedure
     descriptor.getQueryManager().setInsertSQLString(
                        "insert into EMP (EMP_ID, F_NAME, L_NAME, MGR_ID) values
                        (#EMP_ID, #F_NAME, #L_NAME, #MGR_ID)");
 
     // Update procedure
     descriptor.getQueryManager().setUpdateSQLString(
                        "update EMP set (F_NAME, L_NAME, MGR_ID) values
                        (#F_NAME, #L_NAME, #MGR_ID) where EMP_ID = #EMP_ID");
 }

The Configuring a Descriptor Query Manager with Custom Stored Procedure Calls example shows how to implement an amendment method to configure a descriptor query manager to use Oracle stored procedures using a StoredProcedureCall (see Using a StoredProcedureCall). This example uses output cursors to return the result set (see Handling Cursor and Stream Query Results).


Configuring a Descriptor Query Manager with Custom Stored Procedure Calls

 public static void addToDescriptor(ClassDescriptor descriptor) {
 
     // Read-object by primary key procedure
     StoredProcedureCall readCall = new StoredProcedureCall();
     readCall.setProcedureName("READ_EMP");
     readCall.addNamedArgument("P_EMP_ID", "EMP_ID");
     readCall.useNamedCursorOutputAsResultSet("RESULT_CURSOR");
     descriptor.getQueryManager().setReadObjectCall(readCall);
 
     // Read-all instances procedure
     StoredProcedureCall readAllCall = new StoredProcedureCall();
     readAllCall.setProcedureName("READ_ALL_EMP");
     readAllCall.useNamedCursorOutputAsResultSet("RESULT_CURSOR");
     descriptor.getQueryManager().setReadAllCall(readAllCall );
 
     // Insert procedure
     StoredProcedureCall insertCall = new StoredProcedureCall();
     insertCall.setProcedureName("INSERT_EMP");
     insertCall.addNamedArgument("P_EMP_ID", "EMP_ID"); 
     insertCall.addNamedArgument("P_F_NAME", "F_NAME");
     insertCall.addNamedArgument("P_L_NAME", "L_NAME");
     insertCall.addNamedArgument("P_MGR_ID", "MGR_ID");
     descriptor.getQueryManager().setInsertCall(insertCall);
 
     // Update procedure
     StoredProcedureCall updateCall = new StoredProcedureCall();
     updateCall.setProcedureName("UPDATE_EMP");
     updateCall.addNamedArgument("P_EMP_ID", "EMP_ID"); 
     updateCall.addNamedArgument("P_F_NAME", "F_NAME");
     updateCall.addNamedArgument("P_L_NAME", "L_NAME");
     updateCall.addNamedArgument("P_MGR_ID", "MGR_ID");
     descriptor.getQueryManager().setUpdateCall(updateCall);
 }


Configuring Interface Alias

An interface alias allows an interface to be used to refer to a descriptor instead of the implementation class. This can be useful for classes that have public interface and the applications desire to refer to the class using the public interface. Specifying the interface alias allows any queries executed on an EclipseLink session to use the interface as the reference class instead of the implementation class.

Each descriptor can have one interface alias. Use the interface in queries and relationship mappings.


Note: If you use an interface alias, do not associate an interface descriptor with the interface.


This section includes information on configuring an interface alias. Interfaces cannot be created in the Workbench; you must add the Java package or class to your Workbench project before configuring it.


How to Configure Interface Alias Using Workbench

To specify an interface alias, use this procedure:

  1. In the Navigator, select a descriptor.If the Interface Alias advanced property is not visible for the descriptor, right-click the descriptor and choose Select Advanced Properties > Interface Alias from context menu or from the Selected menu.
  2. Click the Interface Alias tab.
    Interface Alias Tab

    Interface Alias Tab
  3. In the Interface Alias field, click Browse and select an interface.


See Also:

Configuring a Descriptor
Creating a Descriptor
Introduction to Descriptors


How to Configure Interface Alias Using Java

To configure a descriptor with an interface alias using Java, create an amendment method (see Configuring Amendment Methods) and use InterfacePolicy method addParentInterface as this example shows.


Configuring an Interface Alias

 public static void addToDescriptor(Descriptor descriptor) {
     descriptor.getInterfacePolicy().addParentInterface(MyInterface.class);
 }


Configuring a Relational Descriptor as a Class or Aggregate Type

By default, when you add a Java class to a relational project (see Configuring Project Classpath), Workbench create a relational class descriptor for it. A class descriptor is applicable to any persistent object except an object that is owned by another in an aggregate relationship. In this case, you must describe the owned object with an aggregate descriptor. Using a class descriptor, you can configure any relational mapping except aggregate collection and aggregate object mappings.

An aggregate object is an object that is strictly dependent on its owning object. Aggregate descriptors do not define a table, primary key, or many of the standard descriptor options as they obtain these from their owning descriptor. If you want to configure an aggregate mapping to associate data members in a target object with fields in a source object's underlying database tables (see Configuring a Relational Aggregate Collection Mapping and Configuring a Relational Aggregate Object Mapping), you must designate the target object's descriptor as an aggregate.

Alternatively, you can remove the aggregate designation from a relational descriptor and return it to its default type.

You can configure inheritance for a descriptor designated as an aggregate (see Configuring Inheritance for a Child (Branch or Leaf) Class Descriptor), however, in this case, all the descriptors in the inheritance tree must be aggregates. Aggregate and class descriptors cannot exist in the same inheritance tree. For more information, see Aggregate and Composite Descriptors and Inheritance.

For more information, see XML Descriptors and Aggregation.


How to Configure a Relational Descriptor as a Class or Aggregate Type Using Workbench

To configure a relational descriptor as class or aggregate, use this procedure.

  1. In the Navigator, select a relational descriptor.
  2. Click the Class or Aggregate descriptor button on the mapping toolbar.
    You can also select the descriptor and choose Selected > Descriptor Type > Class or Aggregate from the menu or by right-clicking on the descriptor in the Navigator window and selecting Descriptor Type > Class or Aggregate from the context menu.
  3. Direct to Field Mapping button If you select Aggregate, specify each of the aggregate descriptor's attributes as a direct to field mapping. See Configuring a Relational Direct-to-Field Mapping for more information.

Direct to Field Mapping button Specify each of the aggregate descriptor's attributes as a direct to field mapping. See Configuring a Relational Direct-to-Field Mapping for more information.

Although the attributes of a target class are not mapped directly to a data source until you configure an aggregate object mapping, you must still specify their mapping type in the target class's descriptor. This tells EclipseLink what type of mapping to use when you do configure the aggregate mapping in the source object's descriptor. For more information, see Aggregate and Composite Descriptors in Relational Projects.

See Also:

Configuring a Descriptor
Configuring a Relational Descriptor as a Class or Aggregate Type


How to Configure a Relational Descriptor as a Class or Aggregate Type Using Java

Using Java, to configure a relational descriptor as an aggregate, use ClassDescriptor method descriptorIsAggregate.

To configure a relational descriptor for use in an aggregate collection mapping, use ClassDescriptor method descriptorIsAggregateCollection.

To configure a relational descriptor as a nonaggregate, use ClassDescriptor method descriptorIsNormal.


Configuring Multitable Information

Descriptors can use multiple tables in mappings. Use multiple tables when either of the following occurs:

  • A subclass is involved in inheritance, and its superclass is mapped to one table, while the subclass has additional attributes that are mapped to a second table.
  • A class is not involved in inheritance and its data is spread out across multiple tables.

When a descriptor has multiple tables, you must be able to join a row from the primary table to all the additional tables. By default, EclipseLink assumes that the primary key of the first, or primary, table is included in the additional tables, thereby joining the tables. EclipseLink also supports custom methods for joining tables. If the primary key field names of the multiple tables do not match, a foreign key can be used to join the tables. The foreign key can either be from the primary table to the secondary table, or from the secondary table to the primary table, or between two of the secondary tables (see How to Configure Multitable Information Using Workbench).

For complex multitable situations, a more complex join expression may be required. These include requiring the join to also check a type code, or using an outer-join. EclipseLink provides support for a multiple-table-join-expression for these cases (see How to Configure Multitable Information Using Java).


How to Configure Multitable Information Using Workbench

To associate multiple tables with a descriptor, use this procedure.

  1. In the Navigator, select a descriptor.If the Multitable Info advanced property is not visible for the descriptor, right-click the descriptor and choose Select Advanced Properties > Multitable Info from the context menu or from the Selected menu.
  2. Click the Multitable Info tab.
    Multitable Info Tab
    Multitable Info Tab
  3. Complete each field on the Multitable Info tab.

Use the following information to enter data in each field of the tab:

Field Description
Primary Table The primary table for this descriptor. This field is for display only.
Additional Tables Use Add and Remove to add or remove additional tables.
Association to Primary Table

Specify how each Additional Table is associated to the Primary Table:

  • Primary Keys Have Same Names–when associating tables by identically named primary keys, EclipseLink requires no additional configuration.
  • Reference–when associating an additional table to the primary table with a Reference (that is, a foreign key), you can specify the Table Reference, as well as the Source and Target fields. Continue with Associating Tables with References.


Associating Tables with References

When associating a table using Reference, additional options appear. You must choose a reference that relates the correct fields in the primary table to the primary keys in the selected table.


Multitable Info Tab, Associated by Reference

Multitable Info Tab, Associated by Reference

Choose a Table Reference that defines how the primary keys of the primary table relate to the primary keys of the selected table. Click Add to add a primary key association.


How to Configure Multitable Information Using Java

Using Java, configure a descriptor with multitable information using the following org.eclipse.persistence.descriptors.ClassDescriptor methods:

  • addTableName(java.lang.String tableName)
  • addForeignKeyFieldNameForMultipleTable(java.lang.String sourceForeignKeyFieldName, java.lang.String targetPrimaryKeyFieldName)

To specify a complex multiple-table-join-expression, create a descriptor amendment method (see Configuring Amendment Methods) and add the join expression using org.eclipse.persistence.descriptors.DescriptorQueryManager method setMultipleTableJoinExpression. For more information, see Appending Additional Join Expressions.




Copyright Statement

Back to the top