To Connect Java program with the MYSQL Database

To connect java application with the MYSQL database, first of all to install MYSQL database in your machine. To install MYSQL in your machine then follow the below steps: 1) To download MYSQL database on its official website : https://dev.mysql.com/downloads/installer/ 2) After that double click on this exe file and run the installer. Choose Full setup option and click next. 3) Execute the entire file and wait to complete to install. 4) Next to check product configuration. 5) In this step choose port number. Default port number is 3306. If it was already acquired by other application like WAMP server or apache server, then change its value like 3307 or 3308. 6) After that select authentication method. Select recommended method. 7) Choose password and user account as per your choice. 8) Follow next step and finish the installation process. Watch this video to install MYSQL installation process: https://youtu.be/QqFWLDSgedg?si=4yvPUXTUQI0DRX2P To conn...