Versions Compared

Key

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

...

Entities are named in accordance with the Java naming conventions for classes (e.g. ExampleEntity).
The physical database names are generated by the system by applying the Java naming convention of constants to the entity names (e.g. ExampleEntity => EXAMPLE_ENTITY).
Important: database table names should never be longer than 30 characters, so you have to keep this in mind when you define a new entity name.
For example: the entity name "AnExampleOfALongEntityName" (that is is 26 characters long) is transformed into the database table name AN_EXAMPLE_OF_A_LONG_ENTITY_NAME, that is 32 characters long and exceeds the maximum length of 30 characters and so it is not a good choice.

Entity Field Names

TODO: pk/fk names (including maximum length)
Entity fields are named in accordance with the Java naming conventions for fields (e.g. exampleField).
TODO: pk/fk names (including maximum length)
 

TODO: view-entity names and conventions 

...