A QR code based Parking Management System using MySQL
To Test this app on your Local Machine :
-
Download MySQL Command Line Client
-
Complete the setup
-
Create database names 'parking'
-
Create table entry with following schema
+------------+------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+------------+------------+------+-----+---------+-------+
| Vehicle_No | char(10) | NO | PRI | NULL | |
| Mobile | bigint(10) | YES | | NULL | |
| date_time | datetime | YES | | NULL | |
+------------+------------+------+-----+---------+-------+ -
Insert Some entries from command line(if u wish)
-
Open command prompt
-
Type 'git clone https://github.com/hrishiakhade/Parking-Entry-System.git'
-
cd Parking-Entry-System
-
Give path where QR Codes will be saved (in my case following is the path)
String defaultpath="C:\Users\owner\Documents\NetBeansProjects\Parking Entry System\qrcode\" (in Menu.java file ) -
Give username and password of your database (in my case username and password is 'root')
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/parking?autoReconnect=true&useSSL=false","root","root");