/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/pdo_dblib/tests/timeout.phpt
80 строк
2 KB
Arnaud Le Blanc
Deprecate driver specific PDO constants
26 авг 2025, 10:06
26 авг 2025, 10:06
6f32e1c
Код
Авторство
О чём код?
--TEST-- PDO_DBLIB: Set query timeouts --EXTENSIONS-- pdo_dblib --SKIPIF-- <?php if (getenv("SKIP_SLOW_TESTS")) die("skip slow test"); require __DIR__ . '/config.inc'; getDbConnection(); ?> --FILE-- <?php require __DIR__ . '/config.inc'; $db = getDbConnection(); $sql = 'WAITFOR DELAY \'00:00:02\''; // regular timeout attribute, set after instance created, will affect query timeout, causing this query to fail $db = getDbConnection(); $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT); $db->setAttribute(PDO::ATTR_TIMEOUT, 1); $stmt = $db->prepare($sql); if (!$stmt->execute()) { echo "OK\n"; // expect some kind of error code if ($stmt->errorCode() != '00000') { echo "OK\n"; } } // pdo_dblib-specific timeout attribute, set after instance created, will control query timeout, causing this query to fail $db = getDbConnection(); $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT); $db->setAttribute(Pdo\Dblib::ATTR_QUERY_TIMEOUT, 1); $stmt = $db->prepare($sql); if (!$stmt->execute()) { echo "OK\n"; // expect some kind of error code if ($stmt->errorCode() != '00000') { echo "OK\n"; } } // regular timeout attribute will affect query timeout, causing this query to fail $db = getDbConnection(PDO::class, [PDO::ATTR_ERRMODE => PDO::ERRMODE_SILENT, PDO::ATTR_TIMEOUT => 1]); $stmt = $db->prepare($sql); if (!$stmt->execute()) { echo "OK\n"; // expect some kind of error code if ($stmt->errorCode() != '00000') { echo "OK\n"; } } // pdo_dblib-specific timeout attribute will control query timeout, causing this query to fail $db = getDbConnection(PDO::class, [PDO::ATTR_ERRMODE => PDO::ERRMODE_SILENT, Pdo\Dblib::ATTR_QUERY_TIMEOUT => 1]); $stmt = $db->prepare($sql); if (!$stmt->execute()) { echo "OK\n"; // expect some kind of error code if ($stmt->errorCode() != '00000') { echo "OK\n"; } } ?> --EXPECT-- OK OK OK OK OK OK OK OK