From 4f7d14f8d9c80d04ce652ba60db6a2a1f2bf9c3e Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sat, 24 Sep 2005 18:54:50 +0000 Subject: [PATCH] a test for bug #34630 --- ext/pdo/tests/bug_34630.phpt | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 ext/pdo/tests/bug_34630.phpt diff --git a/ext/pdo/tests/bug_34630.phpt b/ext/pdo/tests/bug_34630.phpt new file mode 100644 index 0000000000..32eff7ef24 --- /dev/null +++ b/ext/pdo/tests/bug_34630.phpt @@ -0,0 +1,39 @@ +--TEST-- +PDO Common: PHP Bug #34630: inserting streams as LOBs +--SKIPIF-- + +--FILE-- +exec('CREATE TABLE test (id int NOT NULL PRIMARY KEY, val VARCHAR(256))'); +$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + +$fp = tmpfile(); +fwrite($fp, "I am the LOB data"); +rewind($fp); + +$insert = $db->prepare("insert into test (id, val) values (1, ?)"); +$insert->bindValue(1, $fp, PDO::PARAM_LOB); +$insert->execute(); + +print_r($db->query("SELECT * from test")->fetchAll(PDO::FETCH_ASSOC)); + +?> +--EXPECT-- +Array +( + [0] => Array + ( + [id] => 1 + [val] => I am the LOB data + ) + +) -- 2.50.1