search
HomeJavajavaTutorialEasier to use and more powerful than Navicat!


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
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

比 Navicat 好用、更强大!比 Navicat 好用、更强大!Aug 01, 2023 pm 04:21 PM

DBeaver 是一个基于 Java 开发,免费开源的通用数据库管理和开发工具,使用非常友好的 ASL 协议。可以通过官方网站或者 Github 进行下载。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version