xref: /PHP-5.5/ext/oci8/tests/create_table.inc (revision c7a8bd6a)
1<?php
2if ($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?>
14