1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 08:42:29 +01:00
Files
archived-php-src/ext/pgsql/tests/9999dropdb.phpt
Marcus Boerger daded6e633 Reorganized tests
2003-05-20 00:14:46 +00:00

19 lines
232 B
PHP

--TEST--
PostgreSQL drop db
--SKIPIF--
<?php include("skipif.inc"); ?>
--FILE--
<?php
// drop test table
include('config.inc');
$db = pg_connect($conn_str);
pg_query($db, "DROP TABLE ".$table_name);
echo "OK";
?>
--EXPECT--
OK