vote up 1 vote down star

I am using fmdb for managing my database. I could not find any example for deleting a row from a table in fmdb. I tried

  NSString *sqlStat=@"DELETE from tableName WHERE id=3";    
  FMResultSet *rs = [database executeQuery:sqlStat];

but its not working because when I checked the total number of entries in table, I am getting the same number as before executing the above statement. So, what is a proper way to delete a row from a table using fmdb?

flag
How are you determining the number of entries within the table? – Ed Carrel Nov 8 at 11:17
For eg.I am doing FMResultSet *rs = [database executeQuery:@"select * from tableName"]; and then storing the result in NSMutableArray. – MAX Nov 8 at 11:27

2 Answers

vote up 0 vote down

FMDB can be a little finicky if you dont pass in the object as an NSNumber. This is the supported, and safe way of formatting queries.

[db executeUpdate:@"DELETE FROM theTable WHERE id = ?", [NSNumber numberWithInt:myObject.id]];
link|flag
vote up 0 vote down

A total guess - Are transactions on?, perhaps you need to commit the changes?

link|flag

Your Answer

Get an OpenID
or

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