php-sqlsrv/test/functional/sqlsrv/sqlsrv_statement_query_timeout.phpt

69 lines
2 KiB
Plaintext
Raw Normal View History

2017-03-08 23:17:21 +01:00
--TEST--
Test sending queries (query or prepare) with a timeout specified. Errors are expected.
--FILE--
<?php
require_once('MsCommon.inc');
2017-03-08 23:17:21 +01:00
function QueryTimeout($conn, $exec)
{
$tableName = GetTempTableName();
$stmt = sqlsrv_query($conn, "CREATE TABLE [$tableName] ([c1_int] int, [c2_tinyint] tinyint, [c3_smallint] smallint, [c4_bigint] bigint, [c5_bit] bit, [c6_float] float, [c7_real] real, [c8_decimal] decimal(28,4), [c9_numeric] numeric(32,4), [c10_money] money, [c11_smallmoney] smallmoney, [c12_char] char(512), [c13_varchar] varchar(512), [c14_varchar_max] varchar(max), [c15_uniqueidentifier] uniqueidentifier, [c16_datetime] datetime, [c17_smalldatetime] smalldatetime, [c18_timestamp] timestamp)");
2017-03-08 23:17:21 +01:00
sqlsrv_free_stmt($stmt);
if ($exec) {
2017-03-08 23:17:21 +01:00
$stmt = sqlsrv_query($conn, "WAITFOR DELAY '00:00:03'; SELECT * FROM $tableName", array(), array('QueryTimeout' => 1));
} else {
2017-03-08 23:17:21 +01:00
$stmt = sqlsrv_prepare($conn, "WAITFOR DELAY '00:00:05'; SELECT * FROM $tableName", array(), array('QueryTimeout' => 1));
sqlsrv_execute($stmt);
}
$errors = sqlsrv_errors(SQLSRV_ERR_ALL);
$e = $errors[0];
print($e['message'] . "\n");
print($e['code'] . "\n");
print($e['SQLSTATE'] . "\n");
2017-03-08 23:17:21 +01:00
}
function Repro()
{
startTest("sqlsrv_statement_query_timeout");
echo "\nTest begins...\n";
try {
set_time_limit(0);
sqlsrv_configure('WarningsReturnAsErrors', 1);
// connect
$conn = connect();
if (!$conn) {
fatalError("Could not connect.\n");
}
2017-03-08 23:17:21 +01:00
QueryTimeout($conn, true);
QueryTimeout($conn, false);
sqlsrv_close($conn);
} catch (Exception $e) {
2017-03-08 23:17:21 +01:00
echo $e->getMessage();
}
echo "\nDone\n";
endTest("sqlsrv_statement_query_timeout");
2017-03-08 23:17:21 +01:00
}
Repro();
?>
--EXPECTREGEX--
2017-03-08 23:17:21 +01:00

Test begins...
\[Microsoft\]\[ODBC Driver 1[1-9] for SQL Server\]Query timeout expired
2017-03-08 23:17:21 +01:00
0
HYT00
\[Microsoft\]\[ODBC Driver 1[1-9] for SQL Server\]Query timeout expired
2017-03-08 23:17:21 +01:00
0
HYT00
Done
Test \"sqlsrv_statement_query_timeout\" completed successfully\.