php-src/ext/oci8/tests/drop_table.inc
2005-12-01 13:39:48 +00:00

13 lines
239 B
PHP

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