From bdc20deae0a3648d3f4ebf17d1304bbe1a6be76e Mon Sep 17 00:00:00 2001 From: Brian C Date: Thu, 11 Aug 2016 10:15:06 -0500 Subject: [PATCH] Update references to pg-pool --- Client.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Client.md b/Client.md index 2d64cd0..26c582f 100644 --- a/Client.md +++ b/Client.md @@ -109,7 +109,7 @@ Will look for the Unix Domain Socket at `/tmp/.s.PGSQL.5313` and connect with th Initializes __Client's__ internal __[[Connection]]__ object & net.Stream() instance. Starts communication with PostgreSQL server including password negotiation. If a callback is supplied it will be called with an instance of `Error` if an error was encountered during the connection procedure, otherwise it will be called with `null` for a single parameter after a connection to PostgreSQL server is established and the client is ready to dispatch queries. -_note: **Clients** created via the **[[pg#connect]]** method are already connected and should **not** have their #connect method called._ +_note: **Clients** created via a [pool](https://github.com/brianc/node-pg-pool) are already connected and should **not** have their #connect method called._ _____ @@ -117,7 +117,7 @@ _____ Immediately sends a termination message to the PostgreSQL server and closes the underlying net.Stream(). -_note: **Clients** created via the **[[pg#connect]]** method will be automatically disconnected or placed back into the connection pool and should **not** have their #end method called._ +_note: **Clients** created via a [pool](https://github.com/brianc/node-pg-pool) will be automatically disconnected or placed back into the connection pool and should **not** have their #end method called directly._ _____