Lines Matching refs:blob
2 Bug #46274 (pdo_pgsql - Segfault when using PDO::ATTR_STRINGIFY_FETCHES and blob)
27 $blob = fopen('php://memory', 'a');
28 fwrite($blob, $data);
29 rewind($blob);
31 $stmt->bindparam(':foo', $blob, PDO::PARAM_LOB);
34 $blob = '';
35 $stmt->bindparam(':foo', $blob, PDO::PARAM_LOB);
39 $blob = fopen('php://memory', 'a');
40 fwrite($blob, $data);
41 rewind($blob);
43 $stmt->bindparam(':foo', $blob, PDO::PARAM_LOB);
46 $blob = NULL;
47 $stmt->bindparam(':foo', $blob, PDO::PARAM_LOB);