simasch / jooq-examples

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Building data-centric applications with jOOQ

How does jOOQ work?

jOOQ

Showcase Project

Track and Field Competitions

Hurdles

Filip Bossuyt from Kortrijk, Belgium, CC BY 2.0

Data Model

classDiagram
class Organization
class Series
class Competition
class Club
class Athlete
class Category
class Event
class Result

Organization --> "*" Series
Organization --> "*" Club
Organization --> "*" Athlete
Category --> "1..10" Event
Series --> "*" Competition
Series --> "*" Category
Athlete --> "1" Club
Athlete "*" --> "1" Category
Result --> "1" Event
Result --> "1" Category
Result --> "1" Competition
Athlete --> "*" Result
Loading

JTAF - Track and Field

About

License:Apache License 2.0


Languages

Language:Java 100.0%