mirror of
https://github.com/php/php-src.git
synced 2024-12-04 07:14:10 +08:00
13 lines
259 B
PHP
13 lines
259 B
PHP
<?php
|
|
|
|
if ($connection) {
|
|
$ora_sql = "DROP TABLE
|
|
".$schema."php_test_table
|
|
";
|
|
|
|
$statement = OCIParse($connection,$ora_sql);
|
|
OCIExecute($statement);
|
|
}
|
|
|
|
?>
|