Answers:
如果将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
做到了
以下为我工作
const conString = "postgres://YourUserName:YourPassword@YourHost:5432/YourDatabase";
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;