2012-12-13 187 views
0

我有用於連接到SQL Server的代碼。如何使用PHP連接到SQL Server

$host=""; 
$uid="sa"; 
$passVal=""; 
odbc_connect("Driver={SQL Server};Server=$host;",$uid, $passVal); 

我應該如何檢查連接? 我的意思是我應該在我的代碼中放什麼?如:

If connection was set then output "connected" else "disconnected"

而且,我該如何在這裏選擇數據庫? 它應該是這樣的:

$database=""; 
odbc_connect("Driver={SQL Server};Server=$host;",$uid, $passVal, $database); 
+0

這個問題可能已經在這裏找到答案: http://stackoverflow.com/a/9026712/1899595 – TheQuickBrownFox

+0

除了這是另一件事 –

回答

3
odbc_connect("Driver={SQL Server Native Client 10.0};Server=$host;Database=$database;",$uid, $passVal,) or die("Connection could not established"); 

爲您引用http://php.net/manual/en/function.odbc-connect.php

+0

我收到此消息...: 警告:未知:無法打開流:權限被拒絕在未知的行0 –

+0

您正在使用哪個數據庫? –

+0

對不起,我得到了 –