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

EclipseLink/Development/DBWS/NamingConventionTransformer

< EclipseLink‎ | Development‎ | DBWS
Revision as of 12:19, 11 September 2008 by Michael.norman.oracle.com (Talk | contribs) (New page: <div style="margin:5px;float:right;border:1px solid #000000;padding:5px">__TOC__</div> == DBWS Schema Naming Convention Transformers == == Document History == {|{{BMTableStyle}} |-{{BMTHS...)

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

DBWS Schema Naming Convention Transformers

Document History

Date Author Version Description & Notes
080911 Mike Norman 1.0

DBWS utility enhancements

bug 234677 The DBWSBuilder utility should allow user to alter names of the generated schema type. The algorithm the DBWSBuilder utility uses two very simple rules:

    • table name ==> translate any characters un-supported by XML ^1^ ==> to_lowercase ==> add suffix 'Type' ==> top-level complex element type in Template:.xsd file
    • column name ==> translate characters ==> to_lowercase ==> element tag name ^2^ \\

^1^ - same algorithm documented as part of the SQL/X (a.k.a. SQL/XML:2003) specification) \\ ^2^ - All columns expressed as XML elements;

Back to the top