summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/drop_type.inc
blob: 98542a8085931b5e9fc813cd18f05e61cbcb808d (plain)
1
2
3
4
5
6
7
<?php
if ($c) {
    $ora_sql = "DROP TYPE ".$type_name;
    $statement = oci_parse($c,$ora_sql);
    oci_execute($statement);
}
?>