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, 1365🔥, 0💬
Popular Posts:
Can You Drop an Index Associated with a Unique or Primary Key Constraint in Oracle? You can not dele...
How To Disable a Login Name in SQL Server? If you want temporarily disable a login name, you can use...
How To Provide Default Values to Function Parameters in SQL Server Transact-SQL? If you add a parame...
Where to find answers to frequently asked questions on CREATE, ALTER and DROP Statements in MySQL? H...
How To Verify a User name with SQLCMD Tool in SQL Server? The quickest way to verify a user name in ...