From d33ebd8b0af55577d2f96c467c44a9957f1a0a47 Mon Sep 17 00:00:00 2001 From: Brian Carlson Date: Thu, 2 Jun 2011 01:17:55 -0700 Subject: [PATCH] gh#32 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {