Instructions on how to connect to MySQL Server in IntelliJ

As you all know, using MySQL Workbench in parallel with the MySQL server will make manipulating the database easier and more intuitive.

But nowadays there are many modern IDEs that not only support us in compiling and compiling source code, but also support us to work with database management systems.

Instructions on how to connect to MySQL Server in IntelliJ Picture 1

Typical of which are JetBrains products with outstanding functions. In this article, I will guide you to link to MySQL Server using InteliJ - an IDE that is being used by many programmers today.

Ok, let's get started now!

Instructions to link to MySQL Server in IntelliJ

NOTE: In this article I use IntelliJ Ultimate version (link) (If you use Community version, this feature will not be available).

+ Step 1: First, open a Project and click on the Database tab on the right as shown and click the '+' sign to create a connection to the database management system.

+ Step 2: Here, InteliJ supports many different database management systems as well as many different connection types.

In this article I only guide how to connect to a database server installed on the same machine with InteliJ tool. You choose Data Source => MySQL as shown.

Instructions on how to connect to MySQL Server in IntelliJ Picture 3

+ Step 3: Next, you fill in the required information.

  1. (1) The name of the link
  2. (2) Hostname (if on one machine, it is localhost)
  3. (3) The default gateway is 3306
  4. (4) Username and password that you set up when installing MySQL Server
  5. (5) Database name (note that this database must already exist in case you want to link to that database).

Instructions on how to connect to MySQL Server in IntelliJ Picture 5

+ Step 4: Before clicking Test Connection and Ok, you must download the driver file as shown below first (if you create the link for the first time).

Instructions on how to connect to MySQL Server in IntelliJ Picture 7

+ Step 5: After downloading the driver file, we will click on Test Connection and OK to test the connection.

If you see the tool displaying a message with a green area as shown below is fine.

If you cannot connect, check the above information and check if MySQL Service is working.

Instructions on how to connect to MySQL Server in IntelliJ Picture 9

+ Step 6: After connecting, the whole area (2) is the database-related information that we want to link to.

  1. (1) is the console location so that we can write queries that execute queries to the database.

Instructions on how to connect to MySQL Server in IntelliJ Picture 11

+ Step 7: Here I will perform a sample query to show you the power of this tool.

  1. Having code hints, exact suggestions, which words are used a lot will be pushed up first -> very convenient to follow.
  2. The query speed has not been fully tested yet, but it is quite good, feeling much faster in MySQL Workbench.

After writing the query, you click on the blue triangle button (2) to execute the query. Below (3) are the records found by the query.

Instructions on how to connect to MySQL Server in IntelliJ Picture 13

+ Step 8: Next I will guide you to another basic operation that is creating a new table. Right-click and Database name => New => Table as shown below.

Instructions on how to connect to MySQL Server in IntelliJ Picture 15

+ Step 9: This is the interface for us to add tables to the database.

  1. (1) Table name
  2. (2) Operations to add new fields (+), delete data fields (-), change the position of fields (up arrow)
  3. (3) Add attributes for data fields
  4. (4) Script corresponding.
  5. (5) After adding all the information, click Execute to execute the script and create a new table.

Instructions on how to connect to MySQL Server in IntelliJ Picture 17

+ Step 10: This is the newly created data table.

Instructions on how to connect to MySQL Server in IntelliJ Picture 19

Ok, so I have just guided very in detail with you how to connect MySQL Server in IntelliJ already.

It can be said that IntelliJ has integrated almost everything that MySQL Workbench has, to be able to work with MySQL Server.

However, to say that it is completely replacement, I think it is not quite. Because most users are familiar with MySQL Workbench, even when installing MySQL, they install MySQL Workbench by default to work.

So I think, depending on the purpose as well as their convenience, it is possible to use both of these products in combination. See you in the next posts!

4.1 ★ | 14 Vote

May be interested

  • What's new in SQL Server Management Studio 18.7?Photo of What's new in SQL Server Management Studio 18.7?
    the sql server management studio (ssms) 18.7 release is available for download now. today, we will be sharing some updates from the release and what's happening in sql server management studio.
  • DAY function in SQL ServerPhoto of DAY function in SQL Server
    the day function in sql server returns an integer that is the day of the month (from 1 to 31) from the time passed.
  • GETDATE function in SQL ServerPhoto of GETDATE function in SQL Server
    getdate function in sql server returns the current date of the system.
  • GETUTCDATE function in SQL ServerPhoto of GETUTCDATE function in SQL Server
    this article will show you in detail how to use datetime getutcdate () function in sql server with specific syntax and examples to better visualize and capture functions.
  • MONTH function in SQL ServerPhoto of MONTH function in SQL Server
    this article will show you in detail how to use the datetime month () processing function in sql server with specific syntax and examples to better visualize and capture functions.
  • SQL Server YEAR functionPhoto of SQL Server YEAR function
    sql server's year function returns a 4-digit integer that is the year value in the timestamp passed.