queries to add OLE objects

  • Thread starter Thread starter Jordan
  • Start date Start date
J

Jordan

I am designing a table (tblTestSpecs) that will hold some settings that will
be used to generate a JPEG of a graph. I want to store the JPEG that is
created in the OLE field (Graphs) in the table . The JPEG will be
C:\Windows\Temp\Mygraph.jpg.

How do I phrase the query so that I can store C:\Windows\Temp\Mygraph.jpg in
the [tblTestSpecs] table in the field [Graphs]?
 
You can do this using ADO (or DAO) AppendChunk, but I think you'll find that it is not possible directly
with a query.
 
Back
Top