[PHP-DEV] PHP 4.0 Bug #7298: ... not a valid link resource... after pg_connect From: aja <email protected>
Date: 10/17/00

From: aja <email protected>
Operating system: x86 solaris
PHP version: 4.0.3pl1
PHP Bug Type: PostgreSQL related
Bug description: ... not a valid link resource... after pg_connect

(Found the problem and fixed it.)
In some script sequences (can send code if necessary) the routine to set the default link in pgsql.c deletes the link before setting it - specifically, if a script issues multiple opens of the same connection string through an included file only.

php_pgsql_set_default_link has a check if PGG(default_link)!=-1. If true, then it does zend_list_delete of old default link and sets new one. If the old default link and new are the same, this sometimes sets the default to an invalid link.

Code should be :
if (PGG(default_link)!=-1) {
  if (PGG(default_link)==id) return;
...

Compiled it, and the problem is fixed. Checked postgresql connections, and they aren't multiplying.

-- 
Edit Bug report at: http://bugs.php.net/?id=7298&edit=1

-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>