I am trying to delete multi rows: I am using this code:
[db beginTransaction];
[db executeUpdate:@"delete FROM tasks WHERE _id NOT LIKE \'temp\%\' andD _id NOT LIKE \'\%prepop\%\' AND _id NOT LIKE \'link\%\'"];
[db commit];
For some reason the data is not been deleted ...