summaryrefslogtreecommitdiff
path: root/tests/drop_table.inc
blob: 592a95a3db68bb10e6d3e62985ba92ee68fe0708 (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);
}
?>