


But we’re creating a simple Java program, so select only Java at the top left and click Next. You can see IntelliJ IDEA supports many types of projects. Create new projectOpen IntelliJ IDEA and click Create New Project in the welcome screen (or File > New Project if you’re already in the IDE). ) Note: Later you will see you can even create a database (schema) and tables within the IDE. You can create this table by executing the following MySQL script in MySQL Workbench tool: CREATE TABLE `product` (

This table has 5 columns: id, name, brand, madein and price. Setup MySQL databaseCreate a new database named sales with one table named product with the following structure: How to download and install IntelliJ IDEAġ.Introduction to IntelliJ IDEA for beginner.To get familiar with an IDE, nothing better than working directly on it, right?Before starting, make sure that you have JDK, IntelliJ IDEA and MySQL database server installed on your computer, and read these 2 articles first: In this tutorial, I will to walk you through the step-by-step process of developing a simple database program in Java using IntelliJ IDEA Ultimate edition.
