| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
|  |  | |||
Home -> Community -> Usenet -> c.d.o.misc -> Re: Storing images in SQL database?
On Tue, 05 Oct 2004, recneps.w.divad_at_elcaro.moc wrote:
> 
> 
> Galen Boyer wrote:
>> On Tue, 05 Oct 2004, andy_at_andyh.co.uk wrote: >> >>> As for it being harder to use in a web environment, >> I'd like to hear the explanation of this.
But, you already have access to the database, so use that layer and issue:
select picture from tbl where id = ?;
where the table is:
   create table image_tbl(
    id number
   ,picture blob);
What's the issue?
-- Galen BoyerReceived on Tue Oct 05 2004 - 13:38:04 CDT
|  |  |