Annotation of embedaddon/php/ext/oci8/tests/coll_013.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: collections and correct dates (2)
                      3: --SKIPIF--
                      4: <?php
                      5: $target_dbs = array('oracledb' => true, 'timesten' => false);  // test runs on these DBs
                      6: require(dirname(__FILE__).'/skipif.inc');
                      7: ?> 
                      8: --FILE--
                      9: <?php
                     10: 
                     11: require dirname(__FILE__)."/connect.inc";
                     12: 
                     13: $ora_sql = "DROP TYPE
                     14:                                                ".$type_name."
                     15:                   ";
                     16: 
                     17: $statement = OCIParse($c,$ora_sql);
                     18: @OCIExecute($statement);
                     19: 
                     20: $ora_sql = "CREATE TYPE ".$type_name." AS TABLE OF DATE";
                     21:                          
                     22: $statement = OCIParse($c,$ora_sql);
                     23: OCIExecute($statement);
                     24: 
                     25: 
                     26: $coll1 = ocinewcollection($c, $type_name);
                     27: 
                     28: var_dump($coll1->append("28-JUL-05"));
                     29: var_dump($coll1->assignElem(0,"01-JAN-05"));
                     30: var_dump($coll1->getElem(0));
                     31: 
                     32: echo "Done\n";
                     33: 
                     34: require dirname(__FILE__)."/drop_type.inc";
                     35: 
                     36: ?>
                     37: --EXPECT--
                     38: bool(true)
                     39: bool(true)
                     40: string(9) "01-JAN-05"
                     41: Done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>