>>>sqlite_transaction trans(db); 

>>>sqlite3_prepare(db,"insert into image values('mmmm.rar',?);",-1,&stat,0); 

>>>sqlite3_bind_blob(stat,1,ffile,filesize,NULL); 

>>>sqlite3_step(stat); 

>>>free(ffile); 

>>>sqlite3_finalize(stat); 

>>>trans.commit();

and what happens? what do you thing should happen?

and what is sqlite_transaction it doesn't seem to be part of the API
                                          
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to