Home Java javaTutorial Easier to use and more powerful than Navicat!

Easier to use and more powerful than Navicat!

Aug 01, 2023 pm 04:21 PM
java dbeaver

<br>

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>
Copy after login


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 of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP vs. Python: Understanding the Differences PHP vs. Python: Understanding the Differences Apr 11, 2025 am 12:15 AM

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

PHP vs. Other Languages: A Comparison PHP vs. Other Languages: A Comparison Apr 13, 2025 am 12:19 AM

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

Java Program to Find the Volume of Capsule Java Program to Find the Volume of Capsule Feb 07, 2025 am 11:37 AM

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

PHP vs. Python: Core Features and Functionality PHP vs. Python: Core Features and Functionality Apr 13, 2025 am 12:16 AM

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

Create the Future: Java Programming for Absolute Beginners Create the Future: Java Programming for Absolute Beginners Oct 13, 2024 pm 01:32 PM

Java is a popular programming language that can be learned by both beginners and experienced developers. This tutorial starts with basic concepts and progresses through advanced topics. After installing the Java Development Kit, you can practice programming by creating a simple "Hello, World!" program. After you understand the code, use the command prompt to compile and run the program, and "Hello, World!" will be output on the console. Learning Java starts your programming journey, and as your mastery deepens, you can create more complex applications.

PHP: The Foundation of Many Websites PHP: The Foundation of Many Websites Apr 13, 2025 am 12:07 AM

The reasons why PHP is the preferred technology stack for many websites include its ease of use, strong community support, and widespread use. 1) Easy to learn and use, suitable for beginners. 2) Have a huge developer community and rich resources. 3) Widely used in WordPress, Drupal and other platforms. 4) Integrate tightly with web servers to simplify development deployment.

See all articles