php-src/ext/pdo_odbc/tests/pdo_022.phpt
Dan Scott e90582a990 Add test for PDOStatement::getColumnMeta().
Note that PDO_ODBC test fails as it is currently unimplemented.
2005-03-09 00:20:07 +00:00

85 lines
1.2 KiB
PHP
Executable File

--TEST--
PDO_ODBC: PDOStatement::columnMeta results.
--SKIPIF--
<?php # vim:ft=php
require_once('skipif.inc'); ?>
--FILE--
<?php
require_once('connection.inc');
require_once('prepare.inc');
require_once($PDO_TESTS . 'pdo_022.inc');
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
array(7) {
["native_type"]=>
string(7) "integer"
["odbc:decl_type"]=>
string(3) "INT"
["flags"]=>
array(0) {
}
["name"]=>
string(2) "id"
["len"]=>
int(-1)
["precision"]=>
int(0)
["pdo_type"]=>
int(2)
}
array(7) {
["native_type"]=>
string(6) "string"
["odbc:decl_type"]=>
string(11) "VARCHAR(10)"
["flags"]=>
array(0) {
}
["name"]=>
string(3) "val"
["len"]=>
int(-1)
["precision"]=>
int(0)
["pdo_type"]=>
int(2)
}
array(7) {
["native_type"]=>
string(6) "string"
["odbc:decl_type"]=>
string(11) "VARCHAR(16)"
["flags"]=>
array(0) {
}
["name"]=>
string(4) "val2"
["len"]=>
int(-1)
["precision"]=>
int(0)
["pdo_type"]=>
int(2)
}
array(6) {
["native_type"]=>
string(7) "integer"
["flags"]=>
array(0) {
}
["name"]=>
string(8) "COUNT(*)"
["len"]=>
int(-1)
["precision"]=>
int(0)
["pdo_type"]=>
int(2)
}
===DONE===