Use PHP Functions not DB Functions!
Hopefully by now you are beginning to get the idea of why query result sets are useful.
The point is this, if you extract your results into an array like the ones shown above, you no longer need to play around with lots of different types of database specific functions in order to work with extracted data.
The only functions you need to use (99.9% of the time) are PHP functions. The really great thing about this is that you can be darn sure that your code is much more portable between databases.
Another benefit is that you need so much less code! (Which is, of course, great news if you're a lazy sod like me.)
Lets look at some 'meat and potato' ways to work with query result sets using built-in PHP functions, bearing in mind that the result sets are in the same format as the ones described above.
Count how many rows of results have been returned
- echo count($results);
- foreach ( $results as $result )
{
- echo $result->id;
echo $result->name;
echo $result->email;
- echo $results[0]->id;
echo $results[0]->name;
echo $results[0]->email;
- echo $results[0]->name;
- assort($results); // or any other sort function
Interlude
Now that we have defined our main atomic functions and we have a new way of working with query results, we need a nice new code library that turns the standard database gunk into a few neat, atomic functions. If we do this correctly, the only code we will ever need to write again is:
- A little bit of code to send a query to the database
- A little bit of code to deal with results
- And that, my friends, is a lazy sod's dream come true.
But Where's the Class?
What we really need is a PHP class that does all of the above and makes it very easy to do so. You guessed it, it just so happens that I've already made one! Of course, you don't have to use it -- you're welcome to make your own -- but for the sake of this article I am going to use it as an example of how to be as lazy as possible when working with databases.
The class in question is called ezSQL and is available from http://php.justinvincent.com.
To install it, you'll need to:
- Download it.
- Change the database settings at the top of it.
- Include it in the start of your PHP script.
- <?php
include_once "ez_sql.php";
$users = $db->get_results("SELECT * FROM users");
foreach ( $users as $user )
{
- echo $user->name;
The only thing we need to do is use one simple function that takes a SQL query as an argument and outputs a query result set. From that point forward, we simply use PHP functions to work with the data.
