Protected
_clientA Subject that emits drain
events.
A Subject that emits end
events.
A Subject that emits error
events.
A Subject that emits notice
events.
A Subject that emits notification
events.
Opens a database connection using the options defined in the constructor.
Queries a database, returning query results after all results have been returned.
Defines query parameters
Queries a database, streaming query results as they are read.
Defines query parameters
Queries a database, returning query results by cursor after cursor has read all rows.
Defines query parameters
Queries a database, streaming query results as cursor reads rows.
Defines query parameters
Completes after one drain
event has been observed.
Completes after one end
event has been observed.
Completes after one error
has been observed.
Completes after one NoticeMessage
has been observed.
Completes after one Notification
has been observed.
Releases a connection opened in connect()
and forwards
the result of a successful query.
The result of a successful query, useful for RxJS maps.
Releases a connection opened in connect()
.
The RxJS wrapper for
pg.PoolClient
.Note
A
PoolClient
is created automatically whenconnect
is called from withinPool
. This class is nearly identical toClient
, exceptClient
, except a standalone client is disconnected withend()
, whereas aPoolClient
is released withrelease()
.Public Api