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, 2153🔥, 0💬
Popular Posts:
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...
How To Concatenate Two Character Strings Together in SQL Server Transact-SQL? Concatenating two char...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
How To Concatenate Two Character Strings Together in SQL Server Transact-SQL? Concatenating two char...