summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/drop_table.inc
blob: b45330bf66c8d71397ed0cdcb49a52dd2219abae (plain)
1
2
3
4
5
6
7
<?php
if ($c) {
    $ora_sql = "DROP TABLE ".$schema.$table_name;
    $statement = oci_parse($c,$ora_sql);
    oci_execute($statement);
}
?>