php-src/ext/pdo_mysql/tests/show_tables.phpt
2005-08-11 23:45:13 +00:00

21 lines
458 B
PHP

--TEST--
PDO MySQL SHOW TABLES
--SKIPIF--
<?php
if (!extension_loaded('pdo') || !extension_loaded('pdo_mysql')) die('skip not loaded');
require 'ext/pdo_mysql/tests/config.inc';
require 'ext/pdo/tests/pdo_test.inc';
PDOTest::skip();
?>
--FILE--
<?php
require 'ext/pdo/tests/pdo_test.inc';
$db = PDOTest::test_factory('ext/pdo_mysql/tests/common.phpt');
print_r($db->query('SHOW TABLES'));
--EXPECT--
PDOStatement Object
(
[queryString] => SHOW TABLES
)