summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/create_table.inc
blob: c423ce577d922e065af9097ad87c0b7bb2d0d8a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

    if ($connection) {
        $ora_sql = "CREATE TABLE 
                                ".$schema."php_test_table (id NUMBER, value NUMBER) 
                   ";
                      
        $statement = OCIParse($connection,$ora_sql);
        OCIExecute($statement);
    }

?>