|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-06-30 08:07 UTC] sas at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 24 03:00:01 2025 UTC |
Environment: PHP 3.0.11 as DSO module with imap and PostgreSQL support, Apache 1.3.6, PostgreSQL 6.5. PHP causes segmentation faults when pg_Fetch_Array is used. Code example: <?php // PostgreSQL test $DBHandle = pg_Connect("host=localhost user=pgsql password=pgsql dbname=pgsql"); $Result = pg_Exec($DBHandle,"select * from test00 where testo = 'Record modifica to' order by posizione"); for($I=0; $I<pg_NumRows($Result); $I++) { $Data = pg_Fetch_Array($Result,$I); echo "<p><code> $Data[0] $Data[1] $Data[2] $Data[3] </code><p>"; } pg_Close($DBHandle); ?> This code works if I replace pg_Fetch_Array with pg_Fetch_Row.