drop_table.inc 141 B

1234567
  1. <?php
  2. if ($c) {
  3. $ora_sql = "DROP TABLE ".$schema.$table_name;
  4. $statement = oci_parse($c,$ora_sql);
  5. oci_execute($statement);
  6. }
  7. ?>