-1
有插入圖像與其他領域的代碼:無法將圖像添加到sqlite數據庫?
UIImage *image1 = [UIImage imageNamed:@"recette.jpg"];
NSData *image2 = UIImagePNGRepresentation(image1);
if (sqlite3_open(dbpath, &contactDB) == SQLITE_OK)
{
NSString *insertSQL = [NSString stringWithFormat: @"INSERT INTO CONTACTS (name, address, phone,image) VALUES (\"%@\", \"%@\", \"%@\", \"%@\")", name.text, address.text, phone.text,image2];
認爲
我什麼都沒有丟失,因爲它的工作原理沒有像我只是放一些代碼來解釋,這不是整個代碼 – user1426954