|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-02-07 06:31 UTC] sniper@php.net
[2003-02-08 02:07 UTC] eigenuser at yahoo dot com
[2003-02-08 02:23 UTC] magnus@php.net
[2021-04-06 10:40 UTC] git@php.net
[2021-04-06 10:40 UTC] git@php.net
-Status: Not a bug
+Status: Closed
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 13:00:01 2025 UTC |
I have a PostgreSQL db with the table 'news_article', which has its primary index a serial column named 'art_id'. This table has a row whose art_id is set to zero. Now I'll do the following: 1. Make a persistent connection. 2. Make query of the form: SELECT * FROM news_article WHERE art_id = 0 Most of the time this query will work fine, but if I refresh the PHP script multiple times, I'll eventually get an error with the following error messages. ------------------- PHP error message: ------------------- Warning: pg_query() [function.pg-query]: Query failed: server closed the connection unexpectedly This probably means the server terminated abnormally before or while processing the request. .in [filename.php] on line 21 -------------------------- PostgreSQL error message: -------------------------- pq_recvbuf: recv() failed: Undefined error: 0 Some things I've noticed: * This problem does not seem to appear when connecting with non-persistent connections. * Although the PHP error message suggests the connection was closed prematurely, you can still issue successful queries using the same connection resource later on in the PHP page, so it appears that the connection is still open.