"Dylan Milks" <DMilks(at)greenridge(dot)ca> writes:
> What I want to do is upload an image from an ASP page and insert it
> into a table. I don't want to store the image on the file system,
> even if it's only temporary.
Well, if you want to use bytea, you'll need to load the whole image
into memory, bytea-encode it, and insert into the table. There's no
way to "stream" a value into a bytea column.
-Doug