summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/drop_table.inc
blob: ffd99f5af3d0c0f132e825203c1d442d8c865ded (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

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

?>