This is a very simple DBMS project. It is actually an standalone(portable) application. Theme of application is Event Management(college events). This project can be very helpful to those who just started with these technologies. ER diagram is given here.
- Frontend : Java AWT, Swing
- Backend : Java11
- Database : MySQL
- Database Connector : JDBC
- install all the dependecies above(install JDK11 or later).
- make a mysql user named
superadmin
and set passwordSuper@1999
. - To make databases and tables see the source code from line 259. Here
Department
are databses andEvent
are tables. - Every table will contain follwing entities:
- Name (VARCHAR)
- Department (VARCHAR)
- Semester (VARCHAR)
- Contact_No (INT)
- Gmail (VARCHAR)
- download EMS.jar
- open command prompt or terminal go to the directory where jar file is downloaded.
- After setting up everything,run
java -jar EMS.jar
.