PHP ファイルから MS SQL Express 2008 エディションに接続するのに苦労していますが、事実上不可能のようです。
問題を解決するためのガイド/メモをインターウェブでいくつか見つけましたが、これらのどれもそれ以上役に立ちませんでした。
別のサイトからスクリプトを取得し、データベース情報を入力しましたが、それでもエラーが発生します。
<?php
$myServer = "localhost";
$myUser = "demo_basic";
$myPass = "1234";
$myDB = "demo_basic";
//connection to the database
$dbhandle = mssql_connect($myServer, $myUser, $myPass)
or die("Couldn't connect to SQL Server on $myServer");
//select a database to work with
$selected = mssql_select_db($myDB, $dbhandle)
or die("Couldn't open database $myDB");
//declare the SQL statement that will query the database
$query = "SELECT nitid, nisname ";
$query .= "FROM navitems";
//execute the SQL query and return records
$result = mssql_query($query);
$numRows = mssql_num_rows($result);
echo "<h1>" . $numRows . " Row" . ($numRows == 1 ? "" : "s") . " Returned </h1>";
//display the results
while($row = mssql_fetch_array($result))
{
echo "<li>" . $row["nitid"] . $row["nisname"] . "</li>";
}
//close the connection
mssql_close($dbhandle);
?>
次のエラーが表示されます。
警告: mssql_connect() [function.mssql-connect]: サーバーに接続できません: C:\inetpub\vhosts\dexterholding.dk\httpdocs_rip\sql.php の localhost 8 行目 localhost の SQL Server に接続できませんでした
http://www.dehold.net/_rip/sql.phpで確認できます。
何か案は?FastCGI として PLESK と PHP5 を使用して Windows Server 2008 を実行しています。