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, 1839🔥, 0💬
Popular Posts:
How To Change the Name of a Database User in SQL Server? If you want to change the name of an existi...
How To Set Up SQL*Plus Output Format in Oracle? If you want to practice SQL statements with SQL*Plus...
How To Generate Random Numbers with the RAND() Function in SQL Server Transact-SQL? Random numbers a...
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...
How To Download Oracle Database 10g XE in Oracle? If you want to download a copy of Oracle Database ...