diff options
author | Thies C. Arntzen <thies@php.net> | 2001-02-13 18:28:24 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2001-02-13 18:28:24 +0000 |
commit | f6925611fb40499e9c357d7f6d95a7a4c1a96308 (patch) | |
tree | 8fb9a50220382d1f5fc068129175c60ea6963162 /ext/pgsql/php_pgsql.h | |
parent | 79a38a1c3ae108b8aaeaa040bc1ad24337a396e1 (diff) | |
download | php-git-f6925611fb40499e9c357d7f6d95a7a4c1a96308.tar.gz |
@- PostgreSQL now does a rollback at the end of a request on every
@ persistent connection. This is done by doing an "empty" transaction
@ on the connection (This was advised by someone from the PostgreSQL
@ core-team). If you leave transactions open on your page you will see a
@ "NOTICE: BEGIN: already a transaction in progress" message in your
@ apache error_log. This message is created by the PostgreSQL libs - we can
@ do nothing about it. (Thies)
Diffstat (limited to 'ext/pgsql/php_pgsql.h')
-rw-r--r-- | ext/pgsql/php_pgsql.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pgsql/php_pgsql.h b/ext/pgsql/php_pgsql.h index 37071c8395..e53670a1af 100644 --- a/ext/pgsql/php_pgsql.h +++ b/ext/pgsql/php_pgsql.h @@ -48,6 +48,7 @@ extern zend_module_entry pgsql_module_entry; PHP_MINIT_FUNCTION(pgsql); PHP_MSHUTDOWN_FUNCTION(pgsql); PHP_RINIT_FUNCTION(pgsql); +PHP_RSHUTDOWN_FUNCTION(pgsql); PHP_MINFO_FUNCTION(pgsql); PHP_FUNCTION(pg_connect); PHP_FUNCTION(pg_pconnect); |