...
In SourceDataFileJpa size should be:
...
Code Block | ||||
---|---|---|---|---|
| ||||
/** The file size. */ |
...
@Column(name = "\"size\"", nullable = false, unique = false) |
...
private Long size; |
...
```
...
In TerminologyJpa current should be:
...
Code Block | ||||
---|---|---|---|---|
| ||||
/** The is current. */ |
...
@Column(name = "\"current\"", nullable = false) |
...
private boolean current = false; |
...
In WorklistJpa number should be:
Code Block | ||||
---|---|---|---|---|
| ||||
/** 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.
...