“MSSQL PHP” Ответ

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

MSSQL PHP

$dbh = new PDO ("mssql:host=$hostname;dbname=$dbname","$username","$pw");

$hostname may need to be configured as either...
$hostname.':'.$port;
Jealous Jellyfish

MSSQL PHP

$hostname.','.$port;
Jealous Jellyfish

Ответы похожие на “MSSQL PHP”

Вопросы похожие на “MSSQL PHP”

Больше похожих ответов на “MSSQL PHP” по PHP

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

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