PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Qual è il formato della stringa di connessione/URL di PostgreSQL?

Se usi l'associazione Libpq per la rispettiva lingua, in base alla sua documentazione, l'URI è formato come segue:

postgresql://[user[:password]@][netloc][:port][/dbname][?param1=value1&...]

Ecco degli esempi dallo stesso documento

postgresql://
postgresql://localhost
postgresql://localhost:5432
postgresql://localhost/mydb
postgresql://[email protected]
postgresql://user:[email protected]
postgresql://[email protected]/otherdb?connect_timeout=10&application_name=myapp
postgresql://localhost/mydb?user=other&password=secret