|
|
1.1 misho 1: <?php
2: if ($c) {
3:
4:
5: $stmtarray = array(
6: "DROP TABLE ".$schema.$table_name,
7: "CREATE TABLE ".$schema.$table_name." (id NUMBER, value NUMBER, blob BLOB, clob CLOB, string VARCHAR(10))"
8: );
9:
10: oci8_test_sql_execute($c, $stmtarray);
11:
12: }
13: ?>