[Techtalk] PHP / MySql and fat queries

Paul W list3 at truswan.com
Tue Feb 8 03:44:12 EST 2005


kproot at nerim.net wrote:

> Hello,
> 
>    I am in charge of maintaining a web app at work and those days the
> MySql queries have become huge. This was no problem on my test server
> as everything is local, I was getting results in seconds, but on the
> production server it turned out unusable. The main search form of the
> app cannot be used anymore, unless you choose a lot of criterias so
> there will not be too many results. If you don't, you don't get
> anything. I checked the html output and it just stops where the results
> should begin to appear - it's like something is dying there as I don't
> see the end of the output (like </body></html>).
>    So, does anyone know what exactly is happening, and if there is an
> option somewhere to avoid this? (like a numeric value of max rows to be
> returned by mysql, or whatever...)
> 

Syntax would be: SELECT field, field, field FROM 
database.table WHERE field='blah' LIMIT 15;

Paul Wear


More information about the Techtalk mailing list