Home  >  Article  >  Java  >  Easier to use and more powerful than Navicat!

Easier to use and more powerful than Navicat!

Linux中文社区
Linux中文社区forward
2023-08-01 16:21:49898browse

Easier to use and more powerful than Navicat!

DBeaver is a free and open source general database management and development tool developed based on Java. Uses the very friendly ASL protocol. It can be downloaded from the official website or Github.


Since DBeaver is developed based on Java, it can run on various operating systems, including: Windows, Linux, macOS, etc. . DBeaver is developed using the Eclipse framework, supports plug-in extensions, and provides many database management tools: ER diagrams, data import/export, database comparison, simulation data generation, etc.


DBeaver connects to the database through JDBC and can support almost all database products, including: MySQL, PostgreSQL, MariaDB, SQLite, Oracle, Db2, SQL Server, Sybase, MS Access, Teradata, Firebird, Derby and many more. The commercial version can support various NoSQL and big data platforms: MongoDB, InfluxDB, Apache Cassandra, Redis, Apache Hive, etc.


# Download and Installation


##DBeaver The community version can be downloaded from the official website or Github. Both provide installation packages or decompressed versions for different operating systems, and you can choose whether you need to install JRE at the same time. In addition, the official website also provides DBeaver's Eclipse plug-in, which can be integrated in Eclipse.


DBeaver supports Chinese. The installation process is very simple. Not much to say. The only thing to note is that the operation of DBeaver depends on JRE. As expected, after the installation is complete, run dbeaver.exe in the installation directory and you will see the following interface (Windows 10):


Easier to use and more powerful than Navicat!


This interface is actually to create a new database connection. We can see the various data platforms it supports; first click "Cancel" ” button to enter the main window interface.


<br/>


At this point, it will prompt us whether to create a sample database.


Easier to use and more powerful than Navicat!


#If you click "Yes (Y)", it will create a default SQLite sample database. The picture below is its main window interface.


Easier to use and more powerful than Navicat!


##

DBeaver 和我们常用的软件类似,最上面是菜单项和快捷工具,左侧是已经建立的数据库连接和项目信息,右侧是主要的工作区域。


# 连接数据库


打开 DBeaver 之后,首先要做的就是创建数据库连接。可以通过菜单“数据库” -> “新建连接”打开新建连接向导窗口,也就是我们初次运行 DBeaver 时弹出的窗口。


Easier to use and more powerful than Navicat!



We take PostgreSQL as an example to create a new database connection. Select the PostgreSQL icon and click "Next(N)".


Easier to use and more powerful than Navicat!


#Then set the database connection information: host, port, database, user, password. The "Advanced settings" advanced settings option allows you to configure SSH, SSL, proxy, etc. You can also specify your own name and connection type (development, test, production) for the connection.


Click the "Test Link (T)" at the bottom to test the correctness of the connection configuration. When you create a connection to a certain database for the first time, you will be prompted to download the corresponding JDBC driver.


Easier to use and more powerful than Navicat!


它已经为我们查找到了相应的驱动,只需要点击“下载”即可,非常方便。下载完成后,如果连接信息正确,可以看到连接成功的提示。


Easier to use and more powerful than Navicat!


确认后完成连接配置即可。左侧的数据库导航中会增加一个新的数据库连接。


由于某些数据库(例如 Oracle、Db2)的 JDBC 驱动需要登录后才能下载,因此可以使用手动的方式进行配置。选择菜单“数据库” -> “驱动管理器”。


Easier to use and more powerful than Navicat!


Select Oracle and click the "Edit (E)..." button.


Easier to use and more powerful than Navicat!


# Manually download the JDBC driver file of the Oracle database, such as ojdbc8.jar, through the URL prompted by the interface. Then click the "Add File (F)" button to select and add the file. In addition, search the public account Linux Chinese community backend and reply "private kitchen" to get a surprise gift package.


Easier to use and more powerful than Navicat!


##

This driver can be used the next time you establish an Oracle database connection.


After creating a new connection, you can access the corresponding database through these connections, view and edit the data in the database Objects, execute SQL statements, and complete various management and development work.


Easier to use and more powerful than Navicat!


## Generate ER diagram


##Finally, let me introduce how to generate ER of database objects picture. Click the Project view next to Database Navigation on the left side of the window.


Easier to use and more powerful than Navicat!


#There is an "ER" Diagrams" is an entity relationship diagram. Right-click the option and click Create New ER Diagram.


Easier to use and more powerful than Navicat!



#Enter a name and select the database connection and objects to be displayed, then click "Finish" to generate the corresponding ER diagram.



Easier to use and more powerful than Navicat!


ER pictures can be typed and displayed, and can also be printed as pictures. DBeaver currently does not support creating ER diagrams by yourself, it can only be generated from an existing database.


For graphical tools, we can use and experience many functions ourselves; of course, DBeaver also provides User guide, refer to it yourself.

The above is the detailed content of Easier to use and more powerful than Navicat!. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:Linux中文社区. If there is any infringement, please contact admin@php.cn delete