1.2.1555. ext/mssql¶
Extension MSSQL, Microsoft SQL Server.
These functions allow you to access MS SQL Server database.
<?php
// Connect to MSSQL
$link = mssql_connect('KALLESPC\SQLEXPRESS', 'sa', 'phpfi');
if (!$link || !mssql_select_db('php', $link)) {
die('Unable to connect or select database!');
}
// Do a simple query, select the version of
// MSSQL and print it.
$version = mssql_query('SELECT @@VERSION');
$row = mssql_fetch_array($version);
echo $row[0];
// Clean up
mssql_free_result($version);
?>
See also Microsoft SQL Server and Microsoft PHP Driver for SQL Server.
1.2.1555.1. Specs¶
Short name |
Extensions/Extmssql |
Rulesets |
|
Exakat since |
0.8.4 |
PHP Version |
All |
Severity |
|
Time To Fix |
|
Precision |
Very high |
Available in |