“Тестирование соединения SQLSRV” Ответ

PHP Connect MS SQL Server


<?php
$serverName = "serverName\\sqlexpress"; //serverName\instanceName

// Since UID and PWD are not specified in the $connectionInfo array,
// The connection will be attempted using Windows Authentication.
$connectionInfo = array( "Database"=>"dbName");
$conn = sqlsrv_connect( $serverName, $connectionInfo);

if( $conn ) {
     echo "Connection established.<br />";
}else{
     echo "Connection could not be established.<br />";
     die( print_r( sqlsrv_errors(), true));
}
?>

Sore Spider

Тестирование соединения SQLSRV

$serverName = "serverName\\sqlexpress"; //serverName\instanceName

// Since UID and PWD are not specified in the $connectionInfo array,
// The connection will be attempted using Windows Authentication.
$connectionInfo = array( "Database"=>"dbName");
$conn = sqlsrv_connect( $serverName, $connectionInfo);

if( $conn ) {
     echo "Connection established.<br />";
}else{
     echo "Connection could not be established.<br />";
     die( print_r( sqlsrv_errors(), true));
}
Vivacious Vendace

Ответы похожие на “Тестирование соединения SQLSRV”

Вопросы похожие на “Тестирование соединения SQLSRV”

Больше похожих ответов на “Тестирование соединения SQLSRV” по Sql

Смотреть популярные ответы по языку

Смотреть другие языки программирования