php连接到sql server

时间:2013-01-14 16:20:57

标签: php sql-server

我正在尝试连接到在MS Studio中创建的数据库,我没有创建。 db的创建者让我创建了一个网站,我使用PHP / HTML创建了一个网站。现在我需要将两者连接起来并将其数据显示在页面上。

我希望在这里有一些手握,我很新(显然),我在这个项目上独自工作,因为创作者只使用VB。

我要做的第一件事是建立与数据库的连接,我没有运气,我只是得到500错误,据我所知,这是一个语法错误。

我已经使用创作者发送的信息在http://webcheatsheet.com/php/connect_mssql_database.php尝试了此代码,但我觉得我错过了一些东西。

提前致谢!

我正在使用此代码。

<?php
$myServer = "localhost";
$myUser = "your_name";
$myPass = "your_password";
$myDB = "examples"; 

//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 id, name, year ";
$query .= "FROM cars ";
$query .= "WHERE name='BMW'"; 

//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["id"] . $row["name"] . $row["year"] . "</li>";
}
//close the connection
mssql_close($dbhandle);
?>

2 个答案:

答案 0 :(得分:0)

 mssql_get_last_message() 

Try this to get the error message to see why you cant connect to the db server.
something like
if(!$connect) // This is your db handler
{
die('I cannot connect because:'.$mssql_get_last_message());
}

答案 1 :(得分:0)

除了错误的数据库名称外,服务器上的驱动程序(由数据库管理员解决)似乎丢失了。

现在开始构建html页面。