PostgreSQL 데이터베이스에서 Javascript를 읽고 쓰려고합니다. 이 프로젝트 를 github 에서 찾았습니다 . 노드에서 다음 샘플 코드를 실행할 수있었습니다.
var pg = require('pg'); //native libpq bindings = `var pg = require('pg').native`
var conString = "tcp://postgres:1234@localhost/postgres";
var client = new pg.Client(conString);
client.connect();
//queries are queued and executed one after another once the connection becomes available
client.query("CREATE TEMP TABLE beatles(name varchar(10), height integer, birthday timestamptz)");
client.query("INSERT INTO beatles(name, height, birthday) values($1, $2, $3)", ['Ringo', 67, new Date(1945, 11, 2)]);
client.query("INSERT INTO beatles(name, height, birthday) values($1, $2, $3)", ['John', 68, new Date(1944, 10, 13)]);
//queries can be executed either via text/parameter values passed as individual arguments
//or by passing an options object containing text, (optional) parameter values, and (optional) query name
client.query({
name: 'insert beatle',
text: "INSERT INTO beatles(name, height, birthday) values($1, $2, $3)",
values: ['George', 70, new Date(1946, 02, 14)]
});
//subsequent queries with the same name will be executed without re-parsing the query plan by postgres
client.query({
name: 'insert beatle',
values: ['Paul', 63, new Date(1945, 04, 03)]
});
var query = client.query("SELECT * FROM beatles WHERE name = $1", ['John']);
//can stream row results back 1 at a time
query.on('row', function(row) {
console.log(row);
console.log("Beatle name: %s", row.name); //Beatle name: John
console.log("Beatle birth year: %d", row.birthday.getYear()); //dates are returned as javascript dates
console.log("Beatle height: %d' %d\"", Math.floor(row.height/12), row.height%12); //integers are returned as javascript ints
});
//fired after last row is emitted
query.on('end', function() {
client.end();
});
다음으로 웹 페이지에서 실행하려고했지만 아무 일도 일어나지 않았습니다. Javascript 콘솔을 확인했는데 "정의되지 않음"이라고 표시되어 있습니다.
이것이 무엇입니까? 왜 노드에서 작동하지만 웹 페이지에서는 작동하지 않습니까?
또한 노드에서 작동하기 전에해야했습니다 npm install pg
. 그게 뭐야? 나는 디렉토리를보고 파일 pg를 찾지 못했습니다. 그것을 어디에 넣었고 Javascript는 그것을 어떻게 찾습니까?