mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
21 lines
352 B
PHP
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
|
|
)
|