Node.js
PostgreSQL 통합
수색…
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();
연결 개체로 쿼리
쿼리 데이터베이스에 대한 연결 개체를 사용하려는 경우이 샘플 코드를 사용할 수 있습니다.
var queryString = "SELECT name, age FROM students " ;
var query = client.query(queryString);
query.on("row", (row, result)=> {
result.addRow(row);
});
query.on("end", function (result) {
//LOGIC
});
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow