php-src/ext/oci8/tests/create_table.inc
2003-12-19 17:03:12 +00:00

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);
}
?>