php-src/ext/oci8/tests/drop_table.inc

8 lines
163 B
PHP
Raw Normal View History

2003-12-19 17:03:12 +00:00
<?php
if ($c) {
$ora_sql = "DROP TABLE ".$schema.$table_name;
$statement = oci_parse($c,$ora_sql);
oci_execute($statement);
}
2003-12-19 17:03:12 +00:00
?>