|
Posted by gezerpunta on 05/23/07 11:15
Hi
I need to fetch lobs with php script. I found it but there is an
error.
$stmt = $db->prepare("select * from test where oid = 17056");
$stmt->execute();
$stmt->bindColumn('oid', $lob, PDO::PARAM_LOB);
$stmt->fetch(PDO::FETCH_BOUND);
echo $lob;
fpassthru($lob);
it returns
///////
17056
Warning: fpassthru(): supplied argument is not a valid stream resource
in /home/kkk/public_html/haxxxxxxxxx.php on line 20
//////
$lob returns an id but fpassthru doesn t execute with this id.
Where is the wrong?
thks
Navigation:
[Reply to this message]
|