Welcome to the exciting world of Hotel Booking! ๐จโจ Follow these steps to set up and run the project.
Make sure you have Java JDK installed on your machine. If not, download and install it from here.
Use the following command to clone the repository:
git clone https://github.com/j-a-y-e-s-h/hotel-booking.git
Navigate to the "Hotel Booking" folder.
Open your favorite workbench to manage the database.
-- Set up the Database
create database Register;
use Register;
-- Create User Table
CREATE TABLE user (
FM varchar(30),
LM varchar(30),
EM varchar(30),
PW varchar(30),
UN varchar(30)
);
-- Create Booking Table
CREATE TABLE Booking (
UN VARCHAR(50),
AD VARCHAR(50),
MN VARCHAR(50),
RT VARCHAR(50),
FA VARCHAR(50),
SD VARCHAR(50),
NR VARCHAR(50),
ID VARCHAR(50),
OD VARCHAR(50),
MA VARCHAR(50),
FE VARCHAR(50),
CH VARCHAR(50)
);
Now, it's time for the magic! Run the Registration.java
file, and watch the Hotel Booking System come to life. โจ๐ฎ
demo.of.hotel.booking.mp4
Congratulations! You've successfully set up the Hotel Booking System. If you face any issues, feel free to reach out.
Now, go ahead and add your own touch to the project. Happy coding! ๐๐