Instructions on how to connect to MySQL Database in Eclipse

Instructions for connecting to MySQL Database in Eclipse, helping you to connect to the MySQL Server database to manipulate data directly on the IDE instead of using the MySQL Workbench tool

Hi guys, today there are a lot of tools to support very good programming. Typical of which are JetBrains products with superior features. But that doesn't mean the free tools lose their place. In this article, I will show you how to connect to MySQL database in Eclipse - a completely free tool.

How to connect to MySQL Database in Eclipse?

+ Step 1: First, open Eclipse, here I use Eclipse 2019 JavaEE version. Then we have to open the Database Development Perspective as follows:

Window => select Perspective => select Open Perspective => select Other (corresponding to steps 1 -> 2 -> 3 -> 4) as shown below. Or click on the icon at position 5 as shown in the picture.

Instructions on how to connect to MySQL Database in Eclipse Picture 1Instructions on how to connect to MySQL Database in Eclipse Picture 1

+ Step 2: After opening Perspective, choose Database Development as shown below. Then click Open to continue.

Instructions on how to connect to MySQL Database in Eclipse Picture 3Instructions on how to connect to MySQL Database in Eclipse Picture 3

+ Step 3: This is the framework of Database Development in Eclipse.

  1. (1) Data Source Exploer: Displays information related to database connection (Create new connection, view database information after connection .)
  2. (2) Icon shows we are in Database Development Perspective.
  3. (3) Area we can write the query or see the results of the query and related information.

Instructions on how to connect to MySQL Database in Eclipse Picture 5Instructions on how to connect to MySQL Database in Eclipse Picture 5

Step 4: Now we will create a new connection to an existing database with the MySQL Server database management system.

Right-click Database Connection in the tab Data Source Explorer => and select New as shown below.

Instructions on how to connect to MySQL Database in Eclipse Picture 7Instructions on how to connect to MySQL Database in Eclipse Picture 7

+ Step 5: A Connection Profile dialog box will open as follows:

  1. (1) You choose the corresponding database management system, here I choose MySQL
  2. (2) You fill in the connection name (required) and description (optional)
  3. (3) Click Next to continue.

Instructions on how to connect to MySQL Database in Eclipse Picture 9Instructions on how to connect to MySQL Database in Eclipse Picture 9

+ Step 5: In this step we will go into details for the database management system connection.

You click the symbol (+) as shown below to add a driver (is a library that supports connecting to the database)

Note: Here I use Java and MySQL Server version 8.0.15, so I have to download the appropriate version. You can download the appropriate version of the library with MySQL Server here.

Instructions on how to connect to MySQL Database in Eclipse Picture 11Instructions on how to connect to MySQL Database in Eclipse Picture 11

+ Step 6: After downloading the library file, in this step you go to the JAR list tab => Add Jar / zip to point to the downloaded file.

=> Then click OK to complete adding MySQL Driver.

Instructions on how to connect to MySQL Database in Eclipse Picture 13Instructions on how to connect to MySQL Database in Eclipse Picture 13

  1. (1) In this step, click the down arrow to select the MySQL JDBC Driver that was installed in the previous step.
  2. (2) Information about the database you want to connect.
    1. (2.1) Database Name
    2. (2.2) URL to connect to database in format: jdbc: mysql: //: /
    3. (2.3) Username when you install MySQL Server
    4. (2.4) Password corresponding to the username above.

You can click on save password so that you don't have to enter your password next time.

  1. (3) Click Test Connection to test the connection to the database.
  2. (4) If it says Ping Succeeded! connection is successful.
  3. (5) Click Finish to complete the connection.

Instructions on how to connect to MySQL Database in Eclipse Picture 15Instructions on how to connect to MySQL Database in Eclipse Picture 15

+ Step 7: After connecting, suppose you want to see the data of the tbl_user table, you can right-click the table: Data => Edit.

Instructions on how to connect to MySQL Database in Eclipse Picture 17Instructions on how to connect to MySQL Database in Eclipse Picture 17

And this is the data in the tbl_user table. You can learn more operations with tables and databases.

Instructions on how to connect to MySQL Database in Eclipse Picture 19Instructions on how to connect to MySQL Database in Eclipse Picture 19

Above are the steps to help you connect to MySQL Database in Eclipse, it is quite simple, right!

So in this article, I showed you how to connect to the MySQL Server database so that we can manipulate data directly on the IDE instead of using the MySQL Workbench tool. ha.

Actually manipulating the bases directly on IDEs like these will have some limitations compared to specialized tools. However, it will help us more convenient in many cases. Thank you and see you in the next post.!

3.9 ★ | 24 Vote