We know that PHP uses the msql_free_result() function to release the cursor memory related to MySQL results. To illustrate this, we are using the following example -
In this example, we are writing the following PHP script that will free the memory after fetching the records from the table named ' tutorial_tbl'.
<?php $dbhost = 'localhost:3036'; $dbuser = 'root'; $dbpass = 'rootpassword'; $conn = mysql_connect($dbhost, $dbuser, $dbpass); if(! $conn ) { die('Could not connect: ' . mysql_error()); } $sql = 'SELECT tutorial_id, tutorial_title, tutorial_author, submission_date FROM tutorials_tbl'; mysql_select_db('TUTORIALS'); $retval = mysql_query( $sql, $conn ); if(! $retval ) { die('Could not get data: ' . mysql_error()); } while($row = mysql_fetch_array($retval, MYSQL_NUM)) { echo "Tutorial ID :{$row[0]} <br> ". "Title: {$row[1]} <br> ". "Author: {$row[2]} <br> ". "Submission Date : {$row[3]} <br> ". "--------------------------------<br>"; } mysql_free_result($retval); echo "Fetched data successfully</p><p>"; mysql_close($conn); ?>
The above is the detailed content of How can we write a PHP script to free the cursor memory associated with MySQL results?. For more information, please follow other related articles on the PHP Chinese website!