“Uji koneksi SQLSRV” Kode Jawaban

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

Uji koneksi 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

Jawaban yang mirip dengan “Uji koneksi SQLSRV”

Pertanyaan yang mirip dengan “Uji koneksi SQLSRV”

Lebih banyak jawaban terkait untuk “Uji koneksi SQLSRV” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya