Connecting to local PostgreSQL database using Database Connector

0
Hi all, I have an instance where we will connect to a PostgreSQL database using the Database Connector module. Now for testing, I would like to connect to a local database. Can anyone help me with how my URL should look? I know it must be something in sense of jdbc:postgresql://{thisIsWhereImUnsureWhatToDo} Thanks in advance!
asked
1 answers
0

 

jdbc:postgresql://localhost/mydb?user=other&password=secret

See for more info: https://stackoverflow.com/questions/3582552/what-is-the-format-for-the-postgresql-connection-string-url 

answered