|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Commonly Used MSSQL Functions in PHP
By: FYIcenter.com
(Continued from previous topic...)
What Are Commonly Used MSSQL Functions in PHP?
If you look at the PHP 5 manual, you will see a group of functions listed under
the Microsoft SQL Server Functions section. The commonly used functions are:
mssql_connect — Open MS SQL server connection
mssql_close — Close MS SQL Server connection
mssql_select_db — Select MS SQL database
mssql_query — Send MS SQL query
mssql_num_rows — Gets the number of rows in result
mssql_fetch_row — Get row as enumerated array
mssql_fetch_assoc — Returns an associative array of the current row in the result
mssql_fetch_array — Fetch a result row as an associative array, a numeric array, or both
mssql_fetch_object — Fetch row as object
mssql_free_result — Free result memory
mssql_num_fields — Gets the number of fields in result
mssql_field_name — Get the name of a field
mssql_field_type — Gets the type of a field
mssql_field_length — Get the length of a field
mssql_fetch_field — Get field information
mssql_get_last_message — Returns the last message from the server
mssql_rows_affected — Returns the number of records affected by the query
Some of the functions will be discussed in this tutorial collection.
(Continued on next topic...)
- How To Download and Install PHP on Windows?
- How To Check Your PHP Installation?
- What Do You Need to Connect PHP to SQL Server?
- How to Turn on the MSSQL API Module?
- What Is Wrong with SQL Server Client Libarary DLL, ntwdblib.dll?
- What Happens If ntwdblib.dll Is Missing on Your Machine?
- Where to Find ntwdblib.dll Version 2000.80.194.0?
- How To Connect with Different Port Numbers?
- What Are Commonly Used MSSQL Functions in PHP?
- How To Disconnect from a SQL Server using mssql_close()?
- How To Select an Exiting Database using mssql_select_db()?
- How To Execute a SQL Statement using mssql_query()?
- How To Retrieve Error Messages using mssql_get_last_message()?
- How To Turn Off Warning Messages during PHP Execution?
- How To Receive Returning Result from a Query?
- How To Loop through Result Set Objects using mssql_fetch_array()?
- How To Retrieve Field Values using mssql_result()?
- How To List All Field Names in the Result Set using mssql_field_name()?
|