php-src/ext/pdo_mysql/tests/show_tables.phpt
2023-11-27 13:01:24 +00:00

21 lines
352 B
PHP

--TEST--
PDO MySQL SHOW TABLES
--EXTENSIONS--
pdo_mysql
--SKIPIF--
<?php
require_once __DIR__ . '/inc/mysql_pdo_test.inc';
MySQLPDOTest::skip();
?>
--FILE--
<?php
require_once __DIR__ . '/inc/mysql_pdo_test.inc';
$db = MySQLPDOTest::factory();
print_r($db->query('SHOW TABLES'));
?>
--EXPECT--
PDOStatement Object
(
[queryString] => SHOW TABLES
)