I\'m trying to add a new entry into my database, but it\'s not working. There are no errors thrown, and the code that is supposed to be executed after the insertion runs, m
Missing semicolon in your SQLite statement?
NSString *query = [NSString stringWithFormat:@"INSERT INTO lists (name) VALUES('%@')", newField.text];
I believe it should be:
NSString *query = [NSString stringWithFormat:@"INSERT INTO lists (name) VALUES('%@');", newField.text];
Although this might not be your only problem.