PostgreSQL连接字符串/ URL的格式是什么?

当主机不是本地主机时,PostgreSQL连接字符串(URL postgres://...)的格式是什么?

681348 次浏览

在这里是JDBC的文档,一般的URL是" JDBC:postgresql://host:port/database"

第3章在这里记录ADO。NET连接字符串, 一般的连接字符串是Server=host;Port=5432;User Id=username;Password=secret;Database=databasename;

PHP文档us# EYZ0,一般连接字符串是 # EYZ0 < / p >

如果你用了别的药,你得告诉我们。

如果你对各自的语言使用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

postgres的连接url 语法:< / p >

"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;

下面的方法对我很有效

const conString = "postgres://YourUserName:YourPassword@YourHostname:5432/YourDatabaseName";
DATABASE_URL=postgres://{user}:{password}@{hostname}:{port}/{database-name}
server.address=10.20.20.10
server.port=8080
database.user=username
database.password=password
spring.datasource.url=jdbc:postgresql://${server.address}/${server.port}?user=${database.user}&password=${database.password}

还可以通过编程方式从工作的DB连接器检索连接字符串。

例如,我有时从SQLAlchemy的engine中提取连接字符串,如下所示:

> db_engine.url
postgres://{user}:{password}@{host}:{port}/{db_name}?sslmode=require