The Project is based on Netbeans IDE an MYSQL, so both of them are needed to run the project.
After installing Netbeans copy the project folder to your C:\Users\Username\Documents\NetBeansProjects
- Go to www.oracle.com
- Search for Netbeans
- Open Java SE Downloads - Netbeans +JDK Bundle
- Download according to your windows
After installing MYSQL community client, make sure the service is up and running
- First of all open Command Prompt (Admin)
- Then check if its working or not by typing "mysqldump"
- if it works
- Proceed to Step 3
- if it doesn't work
- Go to the mysql folder and copy the address of the bin folder (it would be as follows just eg "C:\Program Files\MySQL\MySQL Server 5.1\bin")
- Then open computer properties from there go to advance system setting
- Then click envoirnment variable there click on new in the below section and variable name as path and then paste the address in step a to variable value.
- In cmd(Admin) again type mysql dump(congrats it has statred working)
- if it works
- Now type as follows mysqldump -uroot -p (database name) > "(Save location)" (remember double quotes here)
- Enter password
- You have acheived back up for your mysql database
- Create a datbase use it then type source the location of the backup file and remeber to use this "/" instead of this""
- An example for save location is as follows d:/archit.sql (remember slashes and this eg is for both step 8 and step 5)