Annotation of embedaddon/php/ext/oci8/tests/descriptors.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: commit connection after destroying the descriptor
        !             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: require dirname(__FILE__).'/create_table.inc';
        !            13: 
        !            14: $ora_sql = "INSERT INTO
        !            15:                        ".$schema.$table_name." (blob)
        !            16:                        VALUES (empty_blob())
        !            17:                        RETURNING
        !            18:                        blob
        !            19:                        INTO :v_blob ";
        !            20: 
        !            21: $statement = oci_parse($c,$ora_sql);
        !            22: $blob = oci_new_descriptor($c,OCI_D_LOB);
        !            23: oci_bind_by_name($statement,":v_blob", $blob,-1,OCI_B_BLOB);
        !            24: oci_execute($statement, OCI_DEFAULT);
        !            25: 
        !            26: unset($blob);
        !            27: unset($statement);
        !            28: 
        !            29: oci_commit($c);
        !            30: 
        !            31: $ora_sql = "SELECT blob FROM ".$schema.$table_name." ";
        !            32: $statement = oci_parse($c,$ora_sql);
        !            33: oci_execute($statement, OCI_DEFAULT);
        !            34: 
        !            35: var_dump($row = oci_fetch_assoc($statement));
        !            36: unset($row['BLOB']);
        !            37: 
        !            38: oci_commit($c);
        !            39: 
        !            40: require dirname(__FILE__).'/drop_table.inc';
        !            41: 
        !            42: echo "Done\n";
        !            43: ?>
        !            44: --EXPECTF--    
        !            45: array(1) {
        !            46:   ["BLOB"]=>
        !            47:   object(OCI-Lob)#%d (1) {
        !            48:     ["descriptor"]=>
        !            49:     resource(%d) of type (oci8 descriptor)
        !            50:   }
        !            51: }
        !            52: Done

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