thats right, catalin, but ....
is it not possible do get a binary blob and write it to file, as it is?
... i cannot believe this ..., with any program language i can do so ...
...it have to be possible to write a blob-buffer byte by byte to a file,
damn ...

best regards
-Gerhard


"Catalin Trifu" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
news:[EMAIL PROTECTED]
>         Hi,
>
>     Just a suggestion. It might be better and simpler
> to store the imges as files on disk and not as BLOBs
> and store in the DB only the reference to their path.
>     I think this performs better.
>
> Cheers,
> Catalin
>
> "Gerhard Knapp" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > hi, perhaps someone can help me ...
> >
> > i store jpgs in a database, then i read them out
> > and write them to a tempfile, the sizeinformation says,
> > the binary blob = 65.535 bytes, but the jpg file has then
> > 768.000 bytes, horrable do dl ...
> >
> > ................
> >         $TEMPFILE = tempnam("./","TMP");
> >         $TEMPFILE .= ".jpg";
> >         $FILEID = fopen($TEMPFILE,"wb");
> >         $BLOBID = ibase_blob_open($R->GRUND_FOTO);
> >         while ($PIC = ibase_blob_get($BLOBID,10240))
> >         {
> >           fputs($FILEID,$PIC);
> >         }
> >         fclose($FILEID);
> >         ibase_blob_close($BLOBID);
> > ...................
> > best regards
> > -Gerhard
> >
> >
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to