我想在一个小的.php中使用一个简单的SQL-Statment。 但我的问题是我无法连接到服务器(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
Thx 4你的帮助:)
(您可能会保留拼写错误; P)
答案 0 :(得分:1)
我认为你需要摆脱斜线:
$verbindung = mssql_connect('localhost\\SQLEXPRESS', '*****', '*****');
答案 1 :(得分:0)
得到它: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.");
}