show_tables.phpt 424 B

1234567891011121314151617181920212223
  1. --TEST--
  2. PDO MySQL SHOW TABLES
  3. --EXTENSIONS--
  4. pdo
  5. pdo_mysql
  6. --SKIPIF--
  7. <?php
  8. require __DIR__ . '/config.inc';
  9. require __DIR__ . '/../../../ext/pdo/tests/pdo_test.inc';
  10. PDOTest::skip();
  11. ?>
  12. --FILE--
  13. <?php
  14. require __DIR__ . '/../../../ext/pdo/tests/pdo_test.inc';
  15. $db = PDOTest::test_factory(__DIR__ . '/common.phpt');
  16. print_r($db->query('SHOW TABLES'));
  17. ?>
  18. --EXPECT--
  19. PDOStatement Object
  20. (
  21. [queryString] => SHOW TABLES
  22. )