Check the archives, it has been covered reacently,
but
assuming something like perl:
$sql=qq{
insert into some_table
(some_blob)
values
( ?)
};
$sth=$dbh->prepare($sql);
$sth->execute( $my_blob);
Regards
M
-Original Message-
From: Hector Rosas [mailto:[EMAIL PROTECTED]]
PHP builder have a good article on this subject, most of which is
language-neutral:
http://www.phpbuilder.com/columns/florian19991014.php3
At 10:51 28/02/2002 -0700, Hector Rosas wrote:
>Hi Everybody, I have a problem with MySQL when I try to store image
> file on it. I use a Blob field b