Database management tool--Navicat Premium v16.0.12 Learning Edition (Windows+MacOS+Linux)

Database management tool--Navicat Premium v16.0.12 Learning Edition (Windows+MacOS+Linux)

Navicat Premium is a database management tool that allows you to simultaneously connect to MySQL, MariaDB, SQL Server, SQLite, Oracle and PostgreSQL databases in a single program.

最后更新 5/6/2022 7:12 AM
懒得勤快
预计阅读 3 分钟
分类
share
标签
MySQL SQLite

Navicat Premium is a database management tool that allows you to simultaneously connect to MySQL, MariaDB, SQL Server, SQLite, Oracle and PostgreSQL databases in a single program. In addition, it is compatible with Drizzle, OurDelta, and Percona Server, and supports cloud databases such as Amazon RDS, Amazon Aurora, Amazon Redshift, SQL Azure, Oracle Cloud, and Google Cloud.

Combining the functions of other Navicat members, Navicat Premium supports most of the functions used in today's database management systems, including stored procedures, events, triggers, functions, views, etc.

Navicat Premium allows you to quickly transfer data between various database systems or to a plain text file in a specified SQL format and encoding. Schedule batch jobs for different databases and run them at a specified time. Other features include import wizards, export wizards, query creation tools, report creation tools, data synchronization, backup, work plans and more.

Navicat's functionality is sufficient to meet all the needs of professional developers, but it is quite easy for newcomers to database servers to learn.

new features

Compared to the previous version, Navicat 16 brings many UI/UX improvements. We are committed to providing professional UX design to improve usability and accessibility. As a result, you can complete complex tasks faster than ever before.

download address

Official Windows installation package: download.navicat.com.cn/download/navicat160_premium_cs_x64.exe

可使用无限试用脚本,将以下代码粘贴到记事本另存为bat文件执行即可:

@echo off

echo Delete HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium\Registration[version and language]
for /f %%i in ('"REG QUERY "HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium" /s | findstr /L Registration"') do (
    reg delete %%i /va /f
)
echo.

echo Delete Info folder under HKEY_CURRENT_USER\Software\Classes\CLSID
for /f %%i in ('"REG QUERY "HKEY_CURRENT_USER\Software\Classes\CLSID" /s | findstr /E Info"') do (
    reg delete %%i /va /f
)
echo.

echo Finish

pause

For more information, please click the link below to visit the official website of diligent and lazy people, especially when the link in the article fails, haha.

Keep Exploring

延伸阅读

更多文章
同标签 10/14/2024

From Failure to Success: How to Delete SQLite Database Files in C#

SQLite, as a lightweight embedded database, is popular for its ease of use and deployment. However, developers may encounter some challenges when trying to delete SQLite database files. This article will share a case from failure to success, showing how to successfully delete SQLite database files in C#.

继续阅读