We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99586a7 commit 0569257Copy full SHA for 0569257
README.md
@@ -39,7 +39,7 @@ The two share the same interface so __no other code changes should be required__
39
client.connect();
40
41
//queries are queued and executed one after another once the connection becomes available
42
- client.query("CREATE TEMP TABLE beatles(name varchar(10), height integer, birthday timestamps)");
+ client.query("CREATE TEMP TABLE beatles(name varchar(10), height integer, birthday timestamptz)");
43
client.query("INSERT INTO beatles(name, height, birthday) values($1, $2, $3)", ['Ringo', 67, new Date(1945, 11, 2)]);
44
client.query("INSERT INTO beatles(name, height, birthday) values($1, $2, $3)", ['John', 68, new Date(1944, 10, 13)]);
45
0 commit comments