php-src/ext/oci8/tests/drop_table.inc
2018-09-24 13:27:27 +10:00

8 lines
141 B
PHP

<?php
if ($c) {
$ora_sql = "DROP TABLE ".$schema.$table_name;
$statement = oci_parse($c,$ora_sql);
oci_execute($statement);
}
?>