diff --git a/README.md b/README.md index 74ed5ad6..60115bd1 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ node-postgres supports both an 'event emitter' style API and a 'callback' style. name: 'insert beatle', values: ['Paul', 63, new Date(1945, 04, 03)] }); - var query = client.query("SELECT * FROM beatles WHERE name = $1", ['john']); + 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) {