Date: 06/28/01
- Next message: M.Izydorski <email protected>: "[PHP-DEV] Bug #11786: Problems with variables from forms posting."
- Previous message: php <email protected>: "[PHP-DEV] Bug #11805: missing 3600 seconds between 10/13/2001 and 10/15/2001"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
From: trozdzyn <email protected>
Operating system: Linux redhat 7.0
PHP version: 4.0.6
PHP Bug Type: MySQL related
Bug description: mysql_unbuffered_query and mysql_query failure.
I have mysql table with over 60000 records inside.
code:
$sql = "SELECT * FROM database.table ORDER BY field";
$result = mysql_unbuffered_query($sql) or die("Error!");
does not work at all but displays "Error!"
code:
$sql = "SELECT * FROM database.table ORDER BY field limit 1,1000";
$result = mysql_unbuffered_query($sql) or die("Error!");
works fine.
code:
$sql = "SELECT * FROM database.table";
$result = mysql_unbuffered_query($sql) or die("Error!");
works fine.
Moreover , there is exactly the same problem with mysql_query() function...
My system is:
PHP: 4.0.6
MySQL: 3.23.22
Linux Kernel: 2.2.17-14
Help!!!
-- Edit Bug report at: http://bugs.php.net/?id=11785&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>
- Next message: M.Izydorski <email protected>: "[PHP-DEV] Bug #11786: Problems with variables from forms posting."
- Previous message: php <email protected>: "[PHP-DEV] Bug #11805: missing 3600 seconds between 10/13/2001 and 10/15/2001"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

