forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdo_mysql_stmt_blobs.phpt
98 lines (84 loc) · 2.67 KB
/
pdo_mysql_stmt_blobs.phpt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
--TEST--
MySQL Prepared Statements and BLOBs
--SKIPIF--
<?php
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'skipif.inc');
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
MySQLPDOTest::skip();
?>
--FILE--
<?php
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
$db = MySQLPDOTest::factory();
$blobs = array(
'TINYBLOB' => 255,
'TINYTEXT' => 255,
'BLOB' => 32767,
'TEXT' => 32767,
'MEDIUMBLOB' => 100000,
'MEDIUMTEXT' => 100000,
'LONGBLOB' => 100000,
'LONGTEXT' => 100000,
);
function test_blob($db, $offset, $sql_type, $test_len) {
$db->exec('DROP TABLE IF EXISTS test');
$db->exec(sprintf('CREATE TABLE test(id INT, label %s) ENGINE=%s', $sql_type, PDO_MYSQL_TEST_ENGINE));
$value = str_repeat('a', $test_len);
$stmt = $db->prepare('INSERT INTO test(id, label) VALUES (?, ?)');
$stmt->bindValue(1, 1);
$stmt->bindValue(2, $value);
if (!$stmt->execute()) {
printf("[%03d + 1] %d %s\n",
$offset, $stmt->errorCode(), var_export($stmt->errorInfo(), true));
return false;
}
$stmt = $db->query('SELECT id, label FROM test');
$id = $label = NULL;
$stmt->bindColumn(1, $id, PDO::PARAM_INT);
$stmt->bindColumn(2, $label, PDO::PARAM_LOB);
if (!$stmt->fetch(PDO::FETCH_BOUND)) {
printf("[%03d + 2] %d %s\n",
$offset, $stmt->errorCode(), var_export($stmt->errorInfo(), true));
return false;
}
if ($label !== $value) {
printf("[%03d + 3] Returned value seems to be wrong (%d vs. %d characters). Check manually\n",
$offset, strlen($label), strlen($value));
return false;
}
if (1 != $id) {
printf("[%03d + 3] Returned id column value seems wrong, expecting 1 got %s.\n",
$offset, var_export($id, true));
return false;
}
$stmt = $db->query('SELECT id, label FROM test');
$ret = $stmt->fetch(PDO::FETCH_ASSOC);
if ($ret['label'] !== $value) {
printf("[%03d + 3] Returned value seems to be wrong (%d vs. %d characters). Check manually\n",
$offset, strlen($ret['label']), strlen($value));
return false;
}
if (1 != $ret['id']) {
printf("[%03d + 3] Returned id column value seems wrong, expecting 1 got %s.\n",
$offset, var_export($ret['id'], true));
return false;
}
return true;
}
$offset = 0;
foreach ($blobs as $sql_type => $test_len) {
$db->setAttribute(PDO::ATTR_EMULATE_PREPARES, 1);
test_blob($db, ++$offset, $sql_type, $test_len);
$db->setAttribute(PDO::ATTR_EMULATE_PREPARES, 0);
test_blob($db, ++$offset, $sql_type, $test_len);
}
print "done!";
?>
--CLEAN--
<?php
require dirname(__FILE__) . '/mysql_pdo_test.inc';
$db = MySQLPDOTest::factory();
$db->exec('DROP TABLE IF EXISTS test');
?>
--EXPECTF--
done!