Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Insert a .BMP image using jetSQL

Status
Not open for further replies.

chillay

Programmer
Jun 27, 2002
102
0
0
US
Is there a basic SQL command to insert an image using Jet SQL.

I tried the following in Access 2007:


----
CREATE TABLE Experiment

(

Field1 COUNTER (40),

Field2 IMAGE

);

-----
INSERT INTO Experiment (Field2)
Values ('C:\Users\Cecelia Allison\Desktop\Addy.bmp');

----

The field comes up as Long binary data and the image will not show up in a form.

Thanks!

Chillay


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top