manutoo
3-31-06, 01:11 PM
Hello,
there's a 72000 hourly query limit per user.
I'm new to MySQL, and I just finished my 1st PHP script using it.
It works fine (it keeps track of online game hosts), but I wonder with how many hosts it could hit the hourly limit.
I read this forum, and I found that only "SELECT" counts toward this limit, but that some MySQL functions contains implicit SELECT, but I don't know which ones (except one : mysql_insert_id() ).
Mainly, I'm using these ones :
- $Row = mysql_fetch_array($Result, MYSQL_NUM);
- $NbEntry = mysql_numrows($Result);
- $LastTime = mysql_result($Result, $i, "LastTime");
- mysql_query("UNLOCK TABLES");
Is there anyone amongst these that counts toward the limit ?
Thanks for your help !
there's a 72000 hourly query limit per user.
I'm new to MySQL, and I just finished my 1st PHP script using it.
It works fine (it keeps track of online game hosts), but I wonder with how many hosts it could hit the hourly limit.
I read this forum, and I found that only "SELECT" counts toward this limit, but that some MySQL functions contains implicit SELECT, but I don't know which ones (except one : mysql_insert_id() ).
Mainly, I'm using these ones :
- $Row = mysql_fetch_array($Result, MYSQL_NUM);
- $NbEntry = mysql_numrows($Result);
- $LastTime = mysql_result($Result, $i, "LastTime");
- mysql_query("UNLOCK TABLES");
Is there anyone amongst these that counts toward the limit ?
Thanks for your help !