If I have something like the following PHP:

$dbh = new PDO ("sqlite:" . $somename);

$resq = $dbh->query ("select * from some_table");
$rest = $resq->fetchAll ();


then do I need to do any cleanup on $resq before re-using it, such as setting 
to NULL (seems to be recommended for reuse of $dbh)? Or is that automatic (I 
know this happens at script-end, but I might re-use $resq many times).

I couldn't see anything in any docs on either the PHP or sqlite sites, about 
this.

Thanks,

-- Tim

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to