summaryrefslogtreecommitdiff
path: root/ext/pgsql
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2001-12-19 05:57:57 +0000
committerYasuo Ohgaki <yohgaki@php.net>2001-12-19 05:57:57 +0000
commit806f5783656e332f03a73e2efd20bea1bedbb1ce (patch)
tree7885fbb24ec2be9914b3e533c482e8c239bd3711 /ext/pgsql
parent4ae3af8a3cbdcf81f1dae65ae0c43c17304cdcf7 (diff)
downloadphp-git-806f5783656e332f03a73e2efd20bea1bedbb1ce.tar.gz
Updated README. Module will not cancel queued query sent.
Diffstat (limited to 'ext/pgsql')
-rw-r--r--ext/pgsql/README6
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/pgsql/README b/ext/pgsql/README
index b5d2d46aa6..2ed5404e89 100644
--- a/ext/pgsql/README
+++ b/ext/pgsql/README
@@ -15,7 +15,7 @@ connection parameter became 1st parameter. Old syntax is preserved,
but it will raise NOTICE error message.
pg_connect()/pg_pconnect() has obsolete multi parameter syntax.
-This will be deleted in 4.3.0 or later.
+This syntax will be deleted in 4.3.0 or later.
Omitting connectin parameter is NOT recommended. Connection
parameter may be required for future PHP version. Specify connection
@@ -69,6 +69,10 @@ are blocked.
- If libpq under Win32 is *NOT* compiled with
WIN32_NON_BLOCKING_CONNECTIONS, non-blocking connection will block.
+Async function may also block if you have not retrive result and
+send or execute query. If there is result left on connection,
+pg_send_query() will block until last query is completed.
+
Garbages are cleaned when resource is cleaned up. There is no need to
clean up query result if it is not needed.