зеркало из https://github.com/microsoft/msphpsql.git
17 строки
351 B
PHP
17 строки
351 B
PHP
<?php
|
|
|
|
if (! extension_loaded("sqlsrv")) {
|
|
die("skip extension not loaded");
|
|
}
|
|
|
|
require_once('MsCommon.inc');
|
|
|
|
$conn = AE\connect();
|
|
if (! $conn) {
|
|
die("Skip Could not connect during SKIPIF!");
|
|
} elseif (AE\isColEncrypted()) {
|
|
if (!AE\isQualified($conn)) {
|
|
die("skip AE feature not supported in the current environment.");
|
|
}
|
|
}
|