query question

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
User avatar
elecktricity
Forum Contributor
Posts: 128
Joined: Sun Sep 25, 2005 8:57 pm
Location: Trapped in my own little world.
Contact:

query question

Post by elecktricity »

how many queries is like a maximum on your page, im unsure if it will make pages load slower on slower connections so is there a set number you would use?
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

There isn't a set number (unless your PHP or MySQL config is somehow set to limit the numbers of queries you can run). Just keep in mind that every query you run is a trip to the database server and will eventually slow down the app if the web server and database server are overworked.
Post Reply