Collections:
PHP MSSQL - Returning Result Set Objects
PHP MSSQL - What Is a Result Set Object Returned by mssql_query()?
✍: Guest
A result set object is a logical representation of data rows returned by mssql_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:
⇒ PHP MSSQL - mssql_fetch_array() - Looping through Returning Rows
⇐ PHP MSSQL - mssql_rows_affected() - Number of Affected Rows
⇑ SQL Server FAQs - PHP MSSQL Functions - Managing Tables and Data Rows
2024-02-28, 2098🔥, 0💬
Popular Posts:
What Is a Parameter File in Oracle? A parameter file is a file that contains a list of initializatio...
How To Convert Binary Strings into Integers in SQL Server Transact-SQL? Binary strings and integers ...
How To Install PHP on Windows in MySQL? The best way to download and install PHP on Windows systems ...
How To Provide Default Values to Function Parameters in SQL Server Transact-SQL? If you add a parame...
How To Verify Your PHP Installation in MySQL? PHP provides two execution interfaces: Command Line In...