vote up 0 vote down star

Hi,

In my iPhone app, I'm trying to delete a row from an SQLite database. After the delete statement is executed the row seems to be deleted correctly, but after I restart the application the row is still there. I'm using the code blow to delete the record. Any idea what could be the problem?

NSString *deleteSQL = [NSString stringWithFormat:@"DELETE FROM table1 WHERE actId=%d", actId];

char *errorMsg;

if (database == nil) {
	NSLog(@"ERROR db not initialized but trying to delete record!!!");
}else{
	if (sqlite3_exec(database, [deleteSQL UTF8String], NULL, NULL, &errorMsg) != SQLITE_OK){
		NSAssert1(0, @"Error updating tables: %s", errorMsg);
		sqlite3_free(errorMsg);
		return NO;
	}	
}

NSLog([NSString stringWithFormat:@"DELETE Successful"]);
flag

75% accept rate
Did you copy your database to a writable area, or are you trying to write to a sandbox area? Also, just to let you know, your assertion failure will kill your execution path, but the UIApplication will actually continue, basically leaking memory. Use NSLog or asl_log instead or ensure that you compile out assertions on release. – Jason Coco Jun 22 at 10:54
The database has to be in a writable place, because sql statements do work on the same table. Should I 'commit' somehow to make the changes persist? Thanks for the tipp regarding the assertion. – levi Jun 22 at 12:45
@levi - that's not true at all. The iPhone uses sandboxing, so the file can appear to be in a write-able place, but those changes only occur in memory. When the application terminates, no actual changes persist on the device. Where did you create this database? – Jason Coco Jun 22 at 13:14
But how is it possible that inserts are working and deletes aren't? When the app starts I'm checking if the db file is available, and if not I'm copying it to that place. The path is determined with the follwing method: - (NSString *) dataFilePath:(NSString *)fileName { NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDir = [paths objectAtIndex:0]; return [documentsDir stringByAppendingPathComponent:fileName]; } – levi Jun 22 at 15:15
They wouldn't be, but I didn't have that information before :) and you're using the correct method to get a writable location, so that isn't the problem. You're sure that the deletes are really successful, right? – Jason Coco Jun 22 at 17:11
show 6 more comments

1 Answer

vote up 0 vote down check

I've solved this problem. Although I don't understand exactly all the details. The problem was the in my 'loading code' I forgot to call sqlite3_finalize for the statements. Not sure why but this influenced somehow future inserts and deletes. Adding sqlite3_finalize to the data loading method solved the problem.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.