Annotation of embedaddon/php/ext/interbase/tests/002.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: InterBase: connect, close and pconnect
! 3: --SKIPIF--
! 4: <?php include("skipif.inc"); ?>
! 5: --FILE--
! 6: <?php /* $Id: 002.phpt 158958 2004-05-19 08:56:50Z helly $ */
! 7:
! 8: require("interbase.inc");
! 9:
! 10: ibase_connect($test_base);
! 11: out_table("test1");
! 12: ibase_close();
! 13:
! 14: $con = ibase_connect($test_base);
! 15: $pcon1 = ibase_pconnect($test_base);
! 16: $pcon2 = ibase_pconnect($test_base);
! 17: ibase_close($con);
! 18: unset($con);
! 19: ibase_close($pcon1);
! 20: unset($pcon1);
! 21:
! 22: out_table("test1");
! 23:
! 24: ibase_close($pcon2);
! 25: unset($pcon2);
! 26: ?>
! 27: --EXPECT--
! 28: --- test1 ---
! 29: 1 test table not created with isql
! 30: ---
! 31: --- test1 ---
! 32: 1 test table not created with isql
! 33: ---
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>