Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
Dashe
New Member
New Member



Joined: Nov 12, 2003
Posts: 2

PostPosted: Tue Sep 21, 2004 3:40 am Reply with quote

I was thinking on how to keep queries down on some loops. This has nothing to do with anything except showing you an example to coment on.

Say if you wanted to show the last 50 games played and you have the last played table with game_id in it and all the game info in another table.

So one way to do it is:
Code:


$sql = $db->sql_query("SELECT * FROM nuke_games_last ORDER BY date_played DESC LIMIT 50");

while ( row = $db->sql_fetchrow($sql) )
{
   $sql = $db->sql_query("SELECT * FROM nuke_games WHERE game_id = $row[game_id]");

   echo $game_name . " " . $game_disc . "<br />";
}


That would cause 51 queries, the inital query and then 1 per game. But if you do it like this:

Code:


$sql = $db->sql_query("SELECT * FROM nuke_games_last ORDER BY date_played DESC LIMIT 50");
$last_games = $db->sql_fetchrow($sql);

$sql = $db->sql_query("SELECT * FROM nuke_games ORDER BY game_id");
$game_info = $db->sql_fetchrowset($sql);

for($i  = 0; $i < count($last_games); $i++)
{
    unset($this_name, $this_disc);

    for ($j = 0; $j < count(game_info); $j++)
    {
       if ($last_game[$i]["game_id"] == $game_info[$j]["game_id"])
   {
      $this_name = $game_info[$j]["game_name"];
      $this_disc = $game_info[$j]["game_disc"];
      break;
   }
   
   echo $this_name . " " . $this_disc . "<br />";
    }
}

Basicly all the info for the games is stored in an array and it has to loop through the array for each of the 50 games, this only casues 2 queries, but performance wise what would be beter, especially if the array was say the user table which can have sometimes 1,000's of entries to search through.

Would just like some opinons on it thanks.
 
View user's profile Send private message
Raven
Site Admin/Owner



Joined: Aug 27, 2002
Posts: 17088

PostPosted: Tue Sep 21, 2004 8:07 am Reply with quote

Actually, unfortunately, this is not the case. If you look at the code for sql_fetchrowset you will see
Code:
         while($this->rowset[$query_id] = @mysql_fetch_array($query_id))

         {
            $result[] = $this->rowset[$query_id];
         }
As you can see, individual calls are still made in a 'while' loop as this is the only way to retrieve rows from a MySQL table. So, you have saved no queries at all.
 
View user's profile Send private message
Dashe







PostPosted: Tue Sep 21, 2004 10:02 am Reply with quote

Thanks for the reply Raven.

If that is the case how come on the query count on the bottom of the page when this was setup on a real table decreased by 50 when I changed it to this.

Just curiouse, would the SQL Abstration Layers Queries not be counted for some reason.
 
Raven







PostPosted: Tue Sep 21, 2004 11:14 am Reply with quote

My guess is that whatever method you are using to count the queries is not accounting for the fetchrowset subroutine and is only using the fetchrow subroutine.
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©