postgresql – Postgres连接url

前端之家收集整理的这篇文章主要介绍了postgresql – Postgres连接url前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何形成Postgres连接网址,当主机是本地主机以外的其他计算机?

我允许Postgres接受来自外部的请求。

如果你使用Libpq绑定各自的语言,根据它的 documentation URI形成如下:
postgresql://[user[:password]@][netloc][:port][/dbname][?param1=value1&...]

这里是同一文档的示例

postgresql://
postgresql://localhost
postgresql://localhost:5433
postgresql://localhost/mydb
postgresql://user@localhost
postgresql://user:secret@localhost
postgresql://other@localhost/otherdb?connect_timeout=10&application_name=myapp
原文链接:https://www.f2er.com/postgresql/193404.html

猜你在找的Postgre SQL相关文章