Lines Matching refs:blob
2 Bug #46274 (pdo_pgsql - Segfault when using PDO::ATTR_STRINGIFY_FETCHES and blob)
28 $blob = fopen('php://memory', 'a');
29 fwrite($blob, $data);
30 rewind($blob);
32 $stmt->bindparam(':foo', $blob, PDO::PARAM_LOB);
35 $blob = '';
36 $stmt->bindparam(':foo', $blob, PDO::PARAM_LOB);
40 $blob = fopen('php://memory', 'a');
41 fwrite($blob, $data);
42 rewind($blob);
44 $stmt->bindparam(':foo', $blob, PDO::PARAM_LOB);
47 $blob = NULL;
48 $stmt->bindparam(':foo', $blob, PDO::PARAM_LOB);