ru_php/ext/pdo_dblib/tests/bug_71667.phpt

39 lines
545 B
PHP

--TEST--
PDO_DBLIB: Emulate how mssql extension names "computed" columns
--EXTENSIONS--
pdo_dblib
--SKIPIF--
<?php
require __DIR__ . '/config.inc';
getDbConnection();
?>
--FILE--
<?php
require __DIR__ . '/config.inc';
$db = getDbConnection();
$stmt = $db->prepare("SELECT 1, 2 AS named, 3");
$stmt->execute();
var_dump($stmt->fetchAll());
?>
--EXPECT--
array(1) {
[0]=>
array(6) {
["computed"]=>
int(1)
[0]=>
int(1)
["named"]=>
int(2)
[1]=>
int(2)
["computed1"]=>
int(3)
[2]=>
int(3)
}
}