mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
11 lines
370 B
PHP
11 lines
370 B
PHP
<?php
|
|
if ($c) {
|
|
$ora_sql = "DROP TABLE ".$schema.$table_name;
|
|
$statement = oci_parse($c, $ora_sql);
|
|
@oci_execute($statement);
|
|
|
|
$ora_sql = "CREATE TABLE ".$schema.$table_name." (id NUMBER, value NUMBER, blob BLOB, clob CLOB, string VARCHAR(10))";
|
|
$statement = oci_parse($c, $ora_sql);
|
|
oci_execute($statement);
|
|
}
|
|
?>
|