Collections:
What Is a Result Set Object in MySQL
What Is a Result Set Object in MySQL?
✍: FYIcenter.com
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:
⇒ Looping through Query Output Rows in MySQL
⇐ Inserting Rows with a SELECT Statement in MySQL
2017-09-20, 2788🔥, 0💬
Popular Posts:
How To Start the Command-Line SQL*Plus in Oracle? If you Oracle server or client installed on your w...
What are single-byte character string data types supported in SQL Server Transact-SQL? Single-byte c...
What is dba.FYIcenter.com Website about? dba.FYIcenter.com is a Website for DBAs (database administr...
Is PL/SQL Language Case Sensitive in Oracle? PL/SQL language is not case sensitive: Reserved words a...
How to obtain the number of rows found by the last SELECT statement using the FOUND_ROWS() function?...