Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Influence DB Store mapping by using annotations

Revision as of 19:56, 13 August 2009 by Unnamed Poltroon (Talk) (New page: This feature is implemented in current CVS Head for the CDO 3.0 release.<br> <br> When using the DB Store the mapping of the EMF/CDO model to the database backend can be influenced by seve...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This feature is implemented in current CVS Head for the CDO 3.0 release.

When using the DB Store the mapping of the EMF/CDO model to the database backend can be influenced by several annotations. Just add the below EAnnotation's to the appropriate classes/features.

ColumnLength

The length of the data.
Can be used for example to provide the length for a VARCHAR that was mapped from an EString feature.

<eAnnotations source="http://www.eclipse.org/CDO/DBStore">
    <details key="columnLength" value="256"/>
</eAnnotations>

ColumnName

The feature annotation for naming it's column.

<eAnnotations source="http://www.eclipse.org/CDO/DBStore">
    <details key="columnName" value="MY_COLUMN_NAME"/>
</eAnnotations>

ColumnType

The type to be used for storing the feature in the database.
This can be used for example to store a feature of type EString in a Clob column.

<eAnnotations source="http://www.eclipse.org/CDO/DBStore">
    <details key="columnType" value="CLOB"/>
</eAnnotations>

TableMapping

Exclude a class from persistence.
Sometimes you may have classes in your model that are not intended to be persisted. Without the below annotation CDO would create an empty table also for those classes, but with that annotation those classes are simply ignored.

<eAnnotations source="http://www.eclipse.org/CDO/DBStore">
    <details key="tableMapping" value="NONE"/>
</eAnnotations>

TableName

A class annotation for naming it's table.

<eAnnotations source="http://www.eclipse.org/CDO/DBStore">
    <details key="tableName" value="MY_TABLE_NAME"/>
</eAnnotations>

Back to the top