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

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

?>