Installing
There are two ways to install DbVisualizer: using an Installer or extracting files from an archive file.
Installing with a Setup Installer
To install DbVisualizer, just execute the Installer you have downloaded and follow the instructions in the screens. The setup installer optionally creates a desktop shortcut used to launch DbVisualizer which is not the case for the other installers below.
Installation from an archive file
Installation Notes for ZIP archives (Windows)
All files are contained in an enclosing folder named DbVisualizer. Unpack the distribution file with the built-in zip archive extraction utility in Windows or with the winzip utility.
The ZIP archive installer will not add any entries to the Start menu, add desktop launchers or even register the software in the Windows registry.
Start DbVisualizer by clicking the dbvis.exe file in the installation directory for DbVisualizer.
To uninstall DbVisualizer installed via a ZIP archive, simply delete the complete DbVisualizer directory.
Installation Notes for TAR archives (Unix)
All files are contained in an enclosing folder named DbVisualizer. Unpack the distribution file with:
gunzip dbvis_unix_11_0.tar.gz
tar xf dbvis_unix_11_0.tar
Start DbVisualizer by executing the shell script in the installation directory, e.g. <em style="font-family: Arial , sans-serif;line-height: 1.4285715;">DbVisualizer/dbvis.sh</em>.
To uninstall DbVisualizer installed via a TAR archive, simply delete the complete DbVisualizer directory.
Installation Notes for RPM archives (Linux)
Install the package with sudo rpm -i <download_filename> or your favorite rpm tool.
Start DbVisualizer by either finding the application and double-clicking on its icon or by executing thedbvis command in a shell.
To uninstall DbVisualizer installed via an RPM archive, use sudo rpm -e dbvis.
Installation Notes for DEB archives (Linux)
Install the package with sudo dpkg -i <download_filename>.deb or your favorite Debian package manager tool.
Start DbVisualizer by either finding the application and double-clicking on its icon or by executing thedbvis command in a shell.
To uninstall DbVisualizer installed via an DEB archive, use sudo dpkg --remove dbvis.
Silent Install
In order to start a silent installation, the installer has to be invoked with the -q argument. The installer will perform the installation as if the user had accepted all default settings.
There is no user interaction on the terminal. The installer will install the application to the default installation directory, unless you pass the -dir parameter to the installer. The parameter after -dir must be the desired installation directory. Example:
dbvis_windows-x64_11_0_jre.exe -q -dir "d:\myapps\DbVisualizer"
The output of the installer is not printed to the command line for silent installation. If you pass the -console parameter after the -q parameter, a console will be allocated that displays the output to the user. This is useful for debugging purposes.
If the installation was successful, the exit code of the installer will be 0, if no suitable JRE could be found it will be 83, for other types of failure it will be 1.
For more options check the command line options for the installer.
See the following for examples on respective operating system.
Windows
dbvis_windows-x64_11_0_jre.exe -q -console
echo %errorlevel%
macOS
DbVisualizer Installer.app/Contents/MacOS/JavaApplicationStub -q -console
echo $?
Linux
dbvis_linux_11_0.sh -q -console
echo $?
The -console argument may be used for debugging purposes. The echo command verifies the exit code from the installer which may be useful if automating the installation.