Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In SourceDataFileJpa size should be: 

 

Code Block
languagejava
themeEclipse
/** The file size. */
@Column(name = "\"size\"", nullable = false, unique = false)
private Long size;

 

...


In TerminologyJpa current should be:

Code Block
languagejava
themeEclipse
/** The is current. */
@Column(name = "\"current\"", nullable = false)
private boolean current = false;

...

In WorklistJpa number should be:

Code Block
languagejava
themeEclipse
/** The number, also the last part of the name. */
@Column(name="\"number\"", nullable = false)
private int number;

Empty Strings

  • Oracle will convert an empty string ("") to a NULL.  This causes failures when loading data as fields that are NOT NULL and have a "" in MySQL cannot have a NULL in Oracle.

...