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

13 lines
239 B
PHP
Raw Normal View History

2003-12-19 17:03:12 +00:00
<?php
2005-09-06 19:33:18 +00:00
if ($c) {
2003-12-19 17:03:12 +00:00
$ora_sql = "DROP TABLE
2005-09-06 19:33:18 +00:00
".$schema.$table_name."
2003-12-19 17:03:12 +00:00
";
2005-09-06 19:33:18 +00:00
$statement = OCIParse($c,$ora_sql);
2003-12-19 17:03:12 +00:00
OCIExecute($statement);
}
?>