Home >> FAQs/Tutorials >> PHP Script Tutorials and Tips >> Index

PHP Tutorials - What Is a Result Set Object

By: FYICenter.com

(Continued from previous topic...)

What Is a Result Set Object?

A result set object is a logical representation of data rows returned by mysql_query() function on SELECT statements. Every result set object has an internal pointer used to identify the current row in the result set. Once you get a result set object, you can use the following functions to retrieve detail information:

  • mysql_free_result($rs) - Closes this result set object.
  • mysql_num_rows($rs) - Returns the number rows in the result set.
  • mysql_num_fields($rs) - Returns the number fields in the result set.
  • mysql_fetch_row($rs) - Returns an array contains the current row indexed by field position numbers.
  • mysql_fetch_assoc($rs) - Returns an array contains the current row indexed by field names.
  • mysql_fetch_array($rs) - Returns an array contains the current row with double indexes: field position numbers and filed names.
  • mysql_fetch_lengths($rs) - Returns an array contains lengths of all fields in the last row returned.
  • mysql_field_name($rs, $i) - Returns the name of the field of the specified index.

(Continued on next topic...)

  1. How To Install MySQL Server?
  2. How To Use MySQL Command Line Interface?
  3. What Do You Need to Connect PHP to MySQL?
  4. How To Connect to MySQL from a PHP Script?
  5. How To Create a Database?
  6. How To Select an Exiting Database?
  7. How To Run a SQL Statement?
  8. How To Create a Table?
  9. How To Get the Number of Rows Selected or Affected by a SQL Statement?
  10. How To Insert Data into a Table?
  11. How To Insert Rows Based on SELECT Statements?
  12. What Is a Result Set Object?
  13. How To Query Tables and Loop through the Returning Rows?
  14. How To Update Existing Rows in a Table?
  15. How To Delete Existing Rows in a Table?
  16. How To Quote Text Values in SQL Statements?
  17. How To Quote Date and Time Values in SQL Statements?
  18. How To Perform Key Word Search in Tables?
  19. How To Query Multiple Tables Jointly?
  20. How To Set the ID Column as Auto-Incremented?
  21. How To Get the Last ID Assigned by MySQL?

Selected Developer Jobs:

More...