1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 02:02:32 +01:00
Files
archived-php-src/ext/oci8/tests/create_table.inc
Antony Dovgal e0ed2b45ff new tests
2005-09-06 19:33:18 +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);
}
?>