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, 1636🔥, 0💬
Popular Posts:
How To Use SQL*Plus Built-in Timers in Oracle? If you don't have a stopwatch/timer and want to measu...
What Is a Dynamic Performance View in Oracle? Oracle contains a set of underlying views that are mai...
How To Convert Binary Strings into Integers in SQL Server Transact-SQL? Binary strings and integers ...
What Are the Underflow and Overflow Behaviors on FLOAT Literals in SQL Server Transact-SQL? If you e...
Can You Drop an Index Associated with a Unique or Primary Key Constraint in Oracle? You can not dele...