summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/create_table.inc
blob: 7335980682eade166c798a54a2964b2d19666c75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
if ($c) {


    $stmtarray = array(
        "DROP TABLE ".$schema.$table_name,
        "CREATE TABLE ".$schema.$table_name." (id NUMBER, value NUMBER, blob BLOB, clob CLOB, string VARCHAR(10))"
    );

    oci8_test_sql_execute($c, $stmtarray);

}
?>