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

Difference between revisions of "EclipseLink/Examples/SDO/SdoClassGen"

(New page: The SDO compiler can be run to generate Static SDO Java files from an XML Schema. The following are examples of the most common usage: <ECLIPSELINK_HOME>/bin/sdo-compiler.sh -sourceFile ...)
 
 
Line 1: Line 1:
 
The SDO compiler can be run to generate Static SDO Java files from an XML Schema.  The following are examples of the most common usage:
 
The SDO compiler can be run to generate Static SDO Java files from an XML Schema.  The following are examples of the most common usage:
  
<ECLIPSELINK_HOME>/bin/sdo-compiler.sh -sourceFile example.xsd -targetDirectory targetDirectory
+
<ECLIPSELINK_HOME>/eclipselink/bin/sdo-compiler.sh -sourceFile example.xsd -targetDirectory targetDirectory
<br><ECLIPSELINK_HOME>\bin\sdo-compiler.cmd -sourceFile example.xsd -targetDirectory targetDirectory
+
<br><ECLIPSELINK_HOME>\eclipselink\bin\sdo-compiler.cmd -sourceFile example.xsd -targetDirectory targetDirectory
  
  
 
For more detailed compiler options:
 
For more detailed compiler options:
  
<ECLIPSELINK_HOME>/bin/sdo-compiler.sh -help
+
<ECLIPSELINK_HOME>/eclipselink/bin/sdo-compiler.sh -help
<br><ECLIPSELINK_HOME>\bin\sdo-compiler.cmd -help
+
<br><ECLIPSELINK_HOME>\eclipselink\bin\sdo-compiler.cmd -help

Latest revision as of 14:20, 5 November 2007

The SDO compiler can be run to generate Static SDO Java files from an XML Schema. The following are examples of the most common usage:

<ECLIPSELINK_HOME>/eclipselink/bin/sdo-compiler.sh -sourceFile example.xsd -targetDirectory targetDirectory
<ECLIPSELINK_HOME>\eclipselink\bin\sdo-compiler.cmd -sourceFile example.xsd -targetDirectory targetDirectory


For more detailed compiler options:

<ECLIPSELINK_HOME>/eclipselink/bin/sdo-compiler.sh -help
<ECLIPSELINK_HOME>\eclipselink\bin\sdo-compiler.cmd -help

Back to the top