Collections:
PHP ODBC - Returning Result Set Objects
PHP ODBC - What Is a Result Set Object Returned by odbc_exec()?
✍: Guest
A result set object is a logical representation of data rows returned by odbc_exec() 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:
⇒ PHP ODBC - odbc_fetch_array() - Looping through Returning Rows
⇐ PHP ODBC - odbc_num_rows() - Number of Affected Rows
⇑ SQL Server FAQs - PHP ODBC Functions - Managing Tables and Data Rows
2024-05-29, 1503🔥, 0💬
Popular Posts:
How To Recover a Dropped Index in Oracle? If you have the recycle bin feature turned on, dropped ind...
How To Convert Character Strings into Numeric Values in SQL Server Transact-SQL? Sometimes you need ...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
How To Select All Columns of All Rows from a Table with a SELECT statement in SQL Server? The simple...
How to set database to be READ_ONLY in SQL Server? Databases in SQL Server have two update options: ...