php-src/ext/oci8/tests/create_table.inc
2005-12-01 13:39:48 +00:00

20 lines
500 B
PHP

<?php
if ($c) {
$ora_sql = "DROP TABLE
".$schema.$table_name."
";
$statement = OCIParse($c, $ora_sql);
@OCIExecute($statement);
$ora_sql = "CREATE TABLE
".$schema.$table_name." (id NUMBER, value NUMBER, blob BLOB, clob CLOB, string VARCHAR(10))
";
$statement = OCIParse($c,$ora_sql);
OCIExecute($statement);
}
?>