Я пытаюсь подключиться к своей базе данных sql server 2012, но она показывает ошибку на моей странице php
Connection could not be established.
Array ( [0] => Array ( [0] => IMSSP [SQLSTATE] => IMSSP [1]
=> -47 [code] => -47 [2] => An error occurred
translating the connection string to UTF-16: No
mapping for the Unicode character exists in the
target multi-byte code page. [message] => An
error occurred translating the connection string to
UTF-16: No mapping for the Unicode character exists in the target multi-byte code page. ) )
Я использую этот код
<?php$connectionInfo = array("UID" => "uid", "PWD" => "pass", "Database"=>"db");
$serverName = "(50.97.219.194\25000)";
$conn = sqlsrv_connect( $serverName, $connectionInfo);
if( $conn )
{
echo "Connection established.\n";
}
else
{
echo "Connection could not be established.\n";
die( print_r( sqlsrv_errors(), true));
}sqlsrv_close( $conn);
?>
Я не могу понять, что не так в моем коде
Задача ещё не решена.
Других решений пока нет …