mirror of
https://github.com/php/php-src.git
synced 2024-12-01 22:03:36 +08:00
13 lines
289 B
PHP
13 lines
289 B
PHP
<?php
|
|
|
|
if ($connection) {
|
|
$ora_sql = "CREATE TABLE
|
|
".$schema."php_test_table (id NUMBER, value NUMBER)
|
|
";
|
|
|
|
$statement = OCIParse($connection,$ora_sql);
|
|
OCIExecute($statement);
|
|
}
|
|
|
|
?>
|