php-src/ext/interbase/tests/002.phpt

33 lines
545 B
Plaintext
Raw Normal View History

--TEST--
InterBase: connect, close and pconnect
--SKIPIF--
2003-04-25 15:43:28 +00:00
<?php include("skipif.inc"); ?>
--POST--
--GET--
--FILE--
2003-04-25 15:43:28 +00:00
<?php /* $Id$ */
2003-04-25 15:43:28 +00:00
require("interbase.inc");
ibase_connect($test_base);
out_table("test1");
ibase_close();
$con = ibase_connect($test_base);
$pcon1 = ibase_pconnect($test_base);
$pcon2 = ibase_pconnect($test_base);
ibase_close($con);
ibase_close($pcon1);
out_table("test1");
ibase_close($pcon2);
?>
--EXPECT--
--- test1 ---
1 test table created with isql
---
--- test1 ---
1 test table created with isql
---