連線到 PostgreSQL
使用 PostgreSQL
npm 模組。
從 npm 安裝依賴項
npm install pg --save
現在你必須建立一個 PostgreSQL 連線,稍後你可以查詢該連線。
假設你是 Database_Name = students,Host = localhost 和 DB_User = postgres
var pg = require("pg")
var connectionString = "pg://postgres:postgres@localhost:5432/students";
var client = new pg.Client(connectionString);
client.connect();