php-src/ext/oci8/tests/drop_table.inc
Antony Dovgal e0ed2b45ff new tests
2005-09-06 19:33:18 +00:00

13 lines
239 B
PHP

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