sqlite3_exec(db,"create table image (filename varchar(128) unique,img
blob);",0,0,&zErrMsg);
and put image to my sqlite db:
sqlite3_prepare(db,"insert into image values('mmmm.jpg',?);",-1,&stat,0);
........
I export the html use this command:
sqlite3 -html film.db "select * from image;">my.html
but I couldn't see the jpg in my web. why?_______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

