php-src/ext/oci8/tests/drop_type.inc

13 lines
229 B
PHP
Raw Normal View History

2005-12-01 13:39:48 +00:00
<?php
if ($c) {
$ora_sql = "DROP TYPE
".$type_name."
";
$statement = OCIParse($c,$ora_sql);
OCIExecute($statement);
}
?>