How to install SQL Workbench for postgreSQL on WINDOWS 10

Josua M C.
2 min readJul 29, 2019

--

It’s easy only 4 Steps:

1. Download and Install Java for Windows

https://java.com/en/download/win10.jsp if doesn’t support you need to download the Java, it takes 5–10 minutes.

2. Download SQLWorkbench and Extract It

http://www.sql-workbench.eu/downloads.html Extract it and put it on safe folder

3. Download JDBC Driver

https://jdbc.postgresql.org/download.html Download and put in the same folder with SQLWorkbench Important! Put this file in a folder where it is safe and where you won’t accidentally move or remove it.

4. Open as Administrator: SQLWorkbench.exe

  1. Manage Drivers
  2. Choose PostGres
  3. Browse the JDBC Driver -> Choose the Library of JDBC Driver
  1. Select the Driver PostgreSQL
  2. URL: jdbc:postgresql://host:port/database_name. For example: jdbc:postgresql://127.0.0.1:5432/
  3. Username of the database
  4. Password of the database

5. DONE

--

--

No responses yet