Aug 10, 2004 #1 lgreyes Technical User May 1, 2004 13 MX Hi everybody, Could somebody tell me how can I insert a picture into a database or maibe where can I get information about this. Tanks.
Hi everybody, Could somebody tell me how can I insert a picture into a database or maibe where can I get information about this. Tanks.
Aug 12, 2004 #2 mynwo Technical User Jul 12, 2003 75 IN Hi, You will have to store them in blob datatype. Here's an eg. create table myblob ( no smallint, blob_data blob ) insert into myblob(no, blob_data) values (1, filetoblob('c:\abc.jpg','client')) ; Upvote 0 Downvote
Hi, You will have to store them in blob datatype. Here's an eg. create table myblob ( no smallint, blob_data blob ) insert into myblob(no, blob_data) values (1, filetoblob('c:\abc.jpg','client')) ;