PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Quel est le format de la chaîne/URL de connexion PostgreSQL ?

Si vous utilisez la liaison Libpq pour le langage respectif, selon sa documentation, l'URI est formé comme suit :

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

Voici des exemples du même document

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