답변:
각 언어에 대해 Libpq 바인딩을 사용하는 경우 해당 설명서 에 따라 URI는 다음과 같이 구성됩니다.
postgresql://[user[:password]@][netloc][:port][/dbname][?param1=value1&...]
동일한 문서의 예는 다음과 같습니다.
postgresql://
postgresql://localhost
postgresql://localhost:5432
postgresql://localhost/mydb
postgresql://user@localhost
postgresql://user:secret@localhost
postgresql://other@localhost/otherdb?connect_timeout=10&application_name=myapp
postgresql://localhost/mydb?user=other&password=secret
postgresql://localhost/mydb?user=other&password=secret
트릭을 수행
다음 은 JDBC 문서이며 일반 URL은 "jdbc : postgresql : // host : port / database"입니다.
제 3 장 여기가 ADO.NET 연결 문자열을 문서화, 일반 연결 문자열입니다Server=host;Port=5432;User Id=username;Password=secret;Database=databasename;
PHP 문서 우리 여기 에, 일반적인 연결 문자열은
host=hostname port=5432 dbname=databasename user=username password=secret
다른 것을 사용하고 있다면 우리에게 알려 주어야합니다.
호스트 또는 호스트 이름은 원격 서버의 IP 주소이거나 컴퓨터 이름으로 네트워크를 통해 액세스 할 수 있으면 작동합니다.