From 3c78e5804a378a8ba529a959c9898f095e2e6f86 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 13 Dec 2005 21:43:16 +0000 Subject: [PATCH] new test --- ext/oci8/tests/cursor_bind.phpt | 97 +++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 ext/oci8/tests/cursor_bind.phpt diff --git a/ext/oci8/tests/cursor_bind.phpt b/ext/oci8/tests/cursor_bind.phpt new file mode 100644 index 0000000000..b89646b340 --- /dev/null +++ b/ext/oci8/tests/cursor_bind.phpt @@ -0,0 +1,97 @@ +--TEST-- +bind and fetch cursor from a statement +--FILE-- + +--EXPECT-- +array(2) { + [0]=> + string(1) "1" + [1]=> + string(1) "1" +} +array(2) { + [0]=> + string(1) "1" + [1]=> + string(1) "1" +} +array(2) { + [0]=> + string(1) "1" + [1]=> + string(1) "1" +} +bool(false) +Done -- 2.50.1