To see more into it, click Project Structure
3) Add JDBC mySQL Driver to project directory (If not downloaded, use MYSQL Driver).
This will ensure that all the required tables get created in the MySQL database.
*Java and MySQL needed to run on your machine.
*****************Start***************
-> CREATE DATABASE ublog;-> USE ublog;
-> CREATE TABLE user ( userId INTEGER AUTO_INCREMENT PRIMARY KEY, emailId VARCHAR(100), password VARCHAR(100) );
-> CREATE TABLE post ( postId INTEGER AUTO_INCREMENT PRIMARY KEY, emailId VARCHAR(100), tag VARCHAR(10), title VARCHAR(200), description VARCHAR(1000), timestamp VARCHAR(100) );
*****************End******************