I have the below line which crashes on FMDB when it runs with:
-[FMDatabase executeUpdate:error:withArgumentsinArray:orDictionary:orVAList:]
My code is:
NSInteger entryID = 1;
[db executeUpdate:@"UPDATE formQue SET Processed='true' WHERE EntryID=?", entryID];
Happy to show more code etc. but I have narrowed the crash down to happening at this line and it does not really effect any other code.
Table:
formQue(EntryID INTEGER PRIMARY KEY, CustomerID int, Title text, FName text, LName text, DOB text, Country text, Email text, Nationality text, Processed text, courseType text, Notes text, YearEntry text, Event text)
And this is what xcode looks like when the crash happens