show_tables.phpt 520 B

1234567891011121314151617181920
  1. --TEST--
  2. PDO MySQL SHOW TABLES
  3. --SKIPIF--
  4. <?php
  5. if (!extension_loaded('pdo') || !extension_loaded('pdo_mysql')) die('skip not loaded');
  6. require dirname(__FILE__) . '/config.inc';
  7. require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc';
  8. PDOTest::skip();
  9. ?>
  10. --FILE--
  11. <?php
  12. require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc';
  13. $db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt');
  14. print_r($db->query('SHOW TABLES'));
  15. --EXPECT--
  16. PDOStatement Object
  17. (
  18. [queryString] => SHOW TABLES
  19. )