PostgreSQL连接URL

时间:2010-08-27 08:43:18

标签: postgresql database-connection

当主机是除localhost之外的其他计算机时,如何形成PostgreSQL连接URL?

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

8 个答案:

答案 0 :(得分:257)

如果对各自的语言使用Libpq绑定,则根据其documentation 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

答案 1 :(得分:17)

以下内容对我有用

const conString = "postgres://YourUserName:YourPassword@YourHost:5432/YourDatabase";

答案 2 :(得分:14)

Here是JDBC的文档,一般URL是“jdbc:postgresql:// host:port / database”

第3章here记录了ADO.NET连接字符串, 一般连接字符串是Server=host;Port=5432;User Id=username;Password=secret;Database=databasename;

PHP文档我们here,一般连接字符串是 host=hostname port=5432 dbname=databasename user=username password=secret

如果你正在使用别的东西,你必须告诉我们。

答案 3 :(得分:13)

DATABASE_URL=postgres://{user}:{password}@{hostname}:{port}/{database-name}

答案 4 :(得分:1)

postgres的连接网址 语法:

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

答案 5 :(得分:0)

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}

答案 6 :(得分:-3)

主机或主机名将是远程服务器的i.p地址,或者如果您可以通过网络按计算机名访问它,那应该适用。

答案 7 :(得分:-8)

如果存在岩石则删除表;

创建桌石( id 序列主键, 用户名 VARCHAR(255), 名称 VARCHAR(255), 读取 VARCHAR(255), 电子邮件 VARCHAR(255), 密码 VARCHAR(255), 图像 VARCHAR(255)

)