Updatinga field with the Image type

  • Thread starter Thread starter Steven Caliendo
  • Start date Start date
S

Steven Caliendo

Hi,

Can someone please tell me how to update a database field with the Image
type ? For example, I have a .gif file on my C:\ drive that I would like to
add to my database. How do I do that ? Insert into Picture Values ( ???? )

Thanks,

Steve
 
the following syntax should work:

INSERT INTO Pictures VALUES ('c:\foo.txt')

-Andy
 
Thanks Andy, that works. How do I retieve it ? I tried "select picture
from pictures", but this isn't really a recordset, right ?

Thanks

Steve
 
Back
Top