Couldn't connect to SQL Server on 192.168.0.8\SQLEXPRESS
เบื้องต้น
-MSSQL 2008 ใช้ OS Windows Server
-เอาคอมเม้นที่ php.ini ใน Linux ที่บรรทัด extension=php_mssql.dll ออกแล้ว
-เช็คไฟล์ php_mssql.dll ใน Linux โฟล์เดอร์ extension แล้วว่ามี
หมายเหตุ
ลองเอาโค้ดติดต่อฐานข้อมูล รันบนเครื่องพีซี(OS=Windows7)ที่จำลองเป็น Web Server สามารถติดต่อฐานข้อมูลได้ครับ
ตัวอย่างโค้ดที่ติดต่อฐานข้อมูล
<?php
$myServer = "192.168.0.8\SQLEXPRESS";
$myUser = "use";
$myPass = "pss";
$myDB = "erpdb";
//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 * FROM erpbusiness ";
//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["COMNO"] . $row["COMNAME"] . "</li>";
}
//close the connection
mssql_close($dbhandle);
?>
รบกวนท่านผู้รู้แนะนำด้วยครับ ขอบคุณครับ
Tag : PHP, Ms SQL Server 2008, Windows, Linux, Web Service