Ever since developing my first mySQL project about 7 years ago, I've been using the same set of simple functions for accessing the database (though, have recently put these into a Database class). As the projects I develop have become more complex, there are many more records in the database and, as a result, greater likelihood of memory issues.
I'm getting the PHP error Allowed memory size of 67108864 bytes exhausted when looping through a mySQL result set and was wondering whether there was a better way to achieve the flexibility I have without the high memory usage.
My function looks like this:
function get_resultset($query) {
$resultset = array();
if (!($result = mysql_unbuffered_query($query))) {
$men = mysql_errno();
$mem = mysql_error();
echo ('<h4>' . $query . ' ' . $men . ' ' . $mem . '</h4>');
exit;
} else {
$xx = 0 ;
while ( $row = mysql_fetch_array ($result) ) {
$resultset[$xx] = $row;
$xx++ ;
}
mysql_free_result($result);
return $resultset;
}
}
I can then write a query and use the function to get all results, e.g.:
$query = 'SELECT * FROM `members`';
$resultset = get_resultset($query);
I can then loop through the $resultset and display the results, e.g.:
$total_results = count($resultset);
for($i=0;$i<$total_results;$i++) {
$record = $resultset[$i];
$firstname = $record['firstname'];
$lastname = $record['lastname'];
// etc, etc display in a table, or whatever
}
Is there a better way of looping through results while still having access to each record's properties for displaying the result list? I've been searching around for people having similar issues and the answers given don't seem to suit my situation or are a little vague. Any help would be greatly appreciated.
mysql_*functions have been deprecated for quite a while now and they're likely going to disappear in the near future. – rid Jul 29 '12 at 23:11