回答:
それぞれの言語に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の://ホスト:ポート/データベース」です
第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
他のものを使用している場合は、お知らせください。
postgres構文の接続URL:
"Server=host ipaddress;Port=5432;Database=dbname;User Id=userid;Password=password;
例:
"Server=192.168.1.163;Port=5432;Database=postgres;User Id=postgres;Password=root;
ホストまたはホスト名は、リモートサーバーのIPアドレスになります。ネットワーク経由でコンピューター名でアクセスできる場合は、機能するはずです。