> >> Hi, the only way for listing images from db is the below? Can it be
> > faster?
[quoted text clipped - 61 lines]
>
> Thanks man!
'Uncomment if necessary
'Const adTypeBinary = 1
'Const adSaveCreateOverWrite = 2
Set mstream = Server.CreateObject("ADODB.Stream")
mstream.Type = adTypeBinary
mstream.Open
mstream.Write rsImagem("filedata").Value
mstream.SaveToFile Server.MapPath("/images/" & ID & ".jpg"),
adSaveCreateOverWrite
Your code will need write access to the images folder of your website.

Signature
Anthony Jones - MVP ASP/ASP.NET
Paulo - 27 Nov 2007 16:15 GMT
Thanks man, I'll try it!
Bye!
>> >> Hi, the only way for listing images from db is the below? Can it be
>> > faster?
[quoted text clipped - 81 lines]
>
> Your code will need write access to the images folder of your website.