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

1.1     ! misho       1: --TEST--
        !             2: uncommitted connection
        !             3: --SKIPIF--
        !             4: <?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
        !             5: --FILE--
        !             6: <?php
        !             7:                
        !             8: require dirname(__FILE__)."/connect.inc";
        !             9: 
        !            10: $stmt = oci_parse($c, "select 1 from dual");
        !            11: oci_execute($stmt, OCI_DEFAULT);
        !            12: 
        !            13: echo "Done\n";
        !            14: ?>
        !            15: --EXPECTF--    
        !            16: Done

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