0

When generating the schema generation script, the terminate statement ";" is generated correctly when using a h2 database, but no terminate statement is generated for oracle. (eclipselink.ddlgen-terminate-statements is set to true)

Is there any way to make eclipselink generate ";"? Really want to avoid going through the script afterward and add ";" manually...

Hengrui Jiang
  • 861
  • 1
  • 10
  • 23

1 Answers1

0

I found a workaround here shortly after having posted the question.... Basically,

  • Create a subclass of OraclePlatform
  • set the protected field storedProcedureTerminationToken to ;
  • Use its qualified name for the property eclipselink.target-database
Hengrui Jiang
  • 861
  • 1
  • 10
  • 23