Re: 2008 : MySQL client run out of memory

2001-08-09 Thread Patrice Garbe
Hello, I tried with unbuffered queries and It doesn't solve the problem at all I have an weird error performing "select id from categories where name = 'Hifi'". The error is now : '0 : ' (nothing). There's an error but it is not defined ?!? Note that only the crashing query is unbuffer

Re: 2008 : MySQL client run out of memory

2001-08-09 Thread Werner Stuerenburg
Patrice Garbe schrieb am Donnerstag, 9. August 2001, 14:20:04: > Then It is not a memory problem for "ini_set()" didn't work. > It always crashes at the same point. > Mysql doc says : > ERROR 2008: MySQL client ran out of memory > note that the error refers to the MySQL client mysql. The reas

Re: 2008 : MySQL client run out of memory

2001-08-09 Thread Patrice Garbe
Then It is not a memory problem for "ini_set()" didn't work. It always crashes at the same point. Mysql doc says : ERROR 2008: MySQL client ran out of memory note that the error refers to the MySQL client mysql. The reason for this error is simply that the client does not have enough memory to s

Re: 2008 : MySQL client run out of memory

2001-08-09 Thread Werner Stuerenburg
If it is a memory problem, try for example ini_set("memory_limit", "16M"); in your script. Otherwise, it may be a loop that keeps allocating memory until it crahes. It this is the case, you won't get it through allocating more memory. Patrice Garbe schrieb am Donnerstag, 9. August 2001, 12:43: