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!
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.
+ Step 3: Next, you fill in the required information.
+ 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).
+ 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.
+ Step 6: After connecting, the whole area (2) is the database-related information that we want to link to.
+ Step 7: Here I will perform a sample query to show you the power of this tool.
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.
+ 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.
+ Step 9: This is the interface for us to add tables to the database.
+ Step 10: This is the newly created data table.
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!