I've started to develop my own mini project in restaurant reservation to improve my Java skills.
At the moment, I create a table consists of
number of tables in the restaurant (column)
and time interval during the day
(row).
So for example, if someone booked a table at 11:00 on Table 4, that cell will become reserved and mark as booked. And i should be able to separate the table of each day to be their own table so that i can select to view the today table or tomorrow table.
I created 3 MySQL table; 'customer', 'seat', and 'booking' table. Detail of each table in the fixture below.
The Problem is i have the idea on what i want to do, but i have no idea on how to bind the data from each table to the table in Netbeans. (I'm using NetBeans).
I'm asking for your idea on how to implement this!
Please see the images below.