ERIL

An example ERIL diagram with 3 classes and 3 one-to-many relationships.

ERIL (Entity-Relationship and Inheritance Language) is a visual language for representing the data structure of a computer system. As its name suggests, ERIL is based on entity-relationship diagrams and class diagrams. ERIL combines the relational and object-oriented approaches to data modeling.

Overview

ERIL can be seen as a set of guidelines aimed at improving the readability of structure diagrams. These guidelines were borrowed from DRAKON, a variant of flowcharts created within the Russian space program. ERIL itself was developed by Stepan Mitkin.

The ERIL guidelines for drawing diagrams:

  • Lines must be straight, either strictly vertical or horizontal.
  • Vertical lines mean ownership (composition).
  • Horizontal lines mean peer relationships (aggregation).
  • Line intersections are not allowed.
  • It is not recommended to fit the whole data model on a single diagram. Draw many simple diagrams instead.
  • The same class (table) can appear several times on the same diagram.
  • Use the following standard symbols to indicate the type of the relationship.
    • One-to-one: a simple line.
    • One-to-many, two-way: a line with a "paw".
    • One-to-many, one-way: an arrow.
    • Many-to-many: a line with two "paws".
  • Do not lump together inheritance and data relationships.[1]

Indexes

A class (table) in ERIL can have several indexes. Each index in ERIL can include one or more fields, similar to indexes in relational databases. ERIL indexes are logical. They can optionally be implemented by real data structures.

Links between classes (tables) in ERIL are implemented by the so-called "link" fields. Link fields can be of different types according to the link type:

  • reference;
  • collection of references.

Example: there is a one-to-many link between Documents and Lines. One Document can have many Lines. Then the Document.Lines field is a collection of references to the lines that belong to the document. Line.Document is a reference to the document that contains the line.

Link fields are also logical. They may or may not be implemented physically in the system.

Usage

ERIL is supposed to model any kind of data regardless of the storage. The same ERIL diagram can represent data stored in a relational database, in a NoSQL database, XML file or in the memory.

ERIL diagrams serve two purposes. The primary purpose is to explain the data structure of an existing or future system or component. The secondary purpose is to automatically generate source code from the model. Code that can be generated includes specialized collection classes, hash and comparison functions, data retrieval and modification procedures, SQL data-definition code, etc. Code generated from ERIL diagrams can ensure referential and uniqueness data integrity. Serialization code of different kinds can also be automatically generated. In some ways ERIL can be compared to object-relational mapping frameworks.

See also

Notes

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.