This class can run common SQL queries on MSSQL database tables. 
 
It can connect to a given Microsoft SQL server using the PHP MSSQL extension. 
 
The class can also execute common SQL queries using parameters passed to the class functions. Currently, it can: 
 
- Execute a SQL query using a given condition and retrieve a single result row or all result rows 
 
- Update a given table with field values and a condition 
 
- Delete table records using a condition 
 
- Insert a table record with given field values and get the identifier value of an inserted record |