
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
Which PHP function is used to release cursor memory associated with MySQL result?
PHP uses mysql_free_result() function to release the cursor memory associated with MySQL result. It returns no value.
Syntax
Mysql_free_result(result);
Followings are the parameters used in this function −
Sr.No | Parameter & Description |
1 | Result Required- Specifies a result set identifier returned by mysql_query(), mysql_store_result() or mysql_use_result() |
- Related Articles
- How can we write PHP script to release cursor memory associated with MySQL result?
- Which PHP function is used to select a MySQL database?
- Which PHP function is used to create a MySQL table?
- Which PHP function is used to establish MySQL database connection using PHP script?
- Which PHP function is used to disconnect from MySQL database connection?
- Which PHP function is used to delete an existing MySQL table?
- Which PHP function is used to insert data into an existing MySQL table?
- Which PHP function is used to give the number of rows affected by MySQL query?
- Which PHP function is used to create a new database?
- Which PHP function is used to delete an existing database?
- MySQL BIT_LENGTH() function is used for which purpose?
- Which function in MySQL is used to reverse a particular string?
- Which function in MySQL is used to add white spaces between two strings?
- Java Program to close this input stream and release any system resources associated with the stream
- Which MySQL function can be used to append values of a column with single quotes?

Advertisements