I'm trying to figure out best practices for running multiple SQL queries using PDO in a single script. The database connection is made at the beginning of the script, but then I need to make multiple different queries. What I'm doing currently (which I'm not sure is best practice) is:
$db = new PDO('mysql:host='.$DBHOST.';dbname='.$DBNAME.';charset=UTF-8', $DBUSER, $DBPASSWORD);
$query = $db->prepare("SELECT count(*) as total from bande_ips WHERE ip=:ip");
$query->bindValue(':ip', $_SESSION['REMOTE_ADDR'], PDO::PARAM_STR);
$query->execute();
$array = $query->fetchAll(PDO::FETCH_ASSOC);
$query = NULL;
$query = $db->prepare("SELECT * from failed_login WHERE IP=:ip and email=:email");
$query->bindValue(':ip', $_SESSION['REMOTE_ADDR'], PDO::PARAM_STR);
$query->bindValue(':email', $email, PDO::PARAM_STR);
$query->execute();
$array = $query->fetchAll(PDO::FETCH_ASSOC);
as you can see i prepare two seperate queries in a single script. But I started setting $query = NULL; as the script was confusing the seperate queries beforehand (it was expecting parameters of an old query which i was no longer calling, which led me to this uncertainty of this being best practices or not.)
I just want to confirm this is best practice before I continue migrating to PDO.
query1,query2... – tmuguet Jan 5 at 20:54$query = NULL, it will fail. If you come back in your code in a few months, you might forget why$query = NULLwas there (as you didn't comment it) and delete it; or you might forget to add it if you add a new query. It can also cause you trouble if you want to do refactoring. Finally, if you are so worried about memory consumption, you can useunset($query)once you're done with it. – tmuguet Jan 11 at 16:22$query = NULL, that was an error on my part with the code. :) – JimmyBanks Jan 11 at 16:28