|
Posted by Jerry Stuckle on 05/23/07 11:28
gezerpunta wrote:
> 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
>
$lob is a resource id, but not the correct type. fpassthru() requires a
resource id created by fopen().
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|