我想在一个小的.php文件中使用一个简单的SQL语句,但我的问题是我无法连接到服务器(MSSQL 2014)
错误: 警告:mssql_connect() [function.mssql-connect]:无法连接到服务器:localhost\SQLEXPRESS in
代码:
<?php
$verbindung = mssql_connect('localhost\SQLEXPRESS', '*****', '*****');
if (!$verbindung || !mssql_select_db('php', $verbindung)) {
die('Connection Failed');
}
?>
我的系统: 我正在使用 XAMPP-Server 1.7.0 和 PHP 5.2.8
我认为你需要转义斜杠:
$verbindung = mssql_connect('localhost\\SQLEXPRESS', '*****', '*****');
明白了:D
$user = '*****';
$pass = '******';
$server = 'localhost\SQLEXPRESS';
$database = 'Account';
$connection_string = "DRIVER={SQL Server};SERVER=$server;DATABASE=$database";
$conn = odbc_connect($connection_string,$user,$pass);
if ($conn) {
echo "Connection established.";
} else{
die("Connection could not be established.");
}