2

我正在努力从我的 PHP 文件连接到我的 MS SQL Express 2008 版本,但这似乎几乎是不可能的。

我找到了一些关于 intarweb 解决问题的指南/注释,但这些都没有进一步帮助我。

我从另一个站点获取了一个脚本并输入了我的数据库信息,但我仍然收到错误:

<?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]:无法连接到服务器:第 8 行 C:\inetpub\vhosts\dexterholding.dk\httpdocs_rip\sql.php 中的 localhost 无法连接到 localhost 上的 SQL Server

您可以在以下位置亲自查看: http: //www.dehold.net/_rip/sql.php

有任何想法吗?我正在运行带有 PLESK 和 PHP5 作为 FastCGI 的 Windows Server 2008。

4

3 回答 3

2

我发现这个指南实际上使它对我有用:

http://samsami2u.wordpress.com/2008/06/30/how-to-connect-mssql-with-php/

于 2010-07-13T13:07:07.767 回答
2

使用 MSSQL,您的服务器名称将如下所示:machinenameoraddress\serverinstancename 示例为192.168.14.201\MSSQLEXPRESSor TESTMACHINE\MYTESTDBSERVER

于 2012-01-11T17:30:29.830 回答
0

可能是用户帐户没有访问 SQL Server 的权限。

虽然查看您的代码您使用的是 SQL 身份验证而不是 Windows 身份验证,但大概此帐户是在 SQL Server 中设置的,并且配置为允许 SQL 身份验证?

于 2010-07-13T10:06:50.883 回答