
| Path : /usr/src/php/ext/oci8/tests/ |
| Current File : //usr/src/php/ext/oci8/tests/drop_table.inc |
<?php
if ($c) {
$ora_sql = "DROP TABLE ".$schema.$table_name;
$statement = oci_parse($c,$ora_sql);
oci_execute($statement);
}
?>