我有用於連接到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);
這個問題可能已經在這裏找到答案: http://stackoverflow.com/a/9026712/1899595 – TheQuickBrownFox
除了這是另一件事 –