In order for the command line execution to finish

This commit is contained in:
Oskar Gewalli 2015-02-15 11:03:24 +01:00
parent 44eaaf68a4
commit 6180bebd9d

View File

@ -34,6 +34,7 @@ pg.connect(conString, function(err, client, done) {
}
console.log(result.rows[0].number);
//output: 1
client.end();
});
});
```