03-04-2008, 02:55 AM
|
#2 (permalink)
|
|
The Frequenter
Join Date: Apr 2005
Location: South UK
Posts: 483
Thanks: 51
|
I wouldn't worry too much about the number of queries. Modern database servers are designed to run hundreds of queries per second without trouble.
The important thing is writing efficient queries. ie, never use SELECT * if you have no intention of not using every row and column that is returned.
As long as you have well written efficient queries, all is good
Alan
|
|
|