Dear fellow iPhone/Objective-C developers:
I am building an iPhone app using Objective-C that stores data in a SQLite database. The problem I'm having is that when my application is running, I'm able to make certain changes to the data in the table. Specifically, I need to allow the user to click on a button and select certain restaurants from the list as being a "favourite" (true), or "unfavourite" (false). When my simulator is running, the code works fine. However, when I close my session and restart the app, the changes that I made in my previous session are not saved. Here is the relevant block of code:
- (void) addFavourite:(NSString *)rName{
sqlite3 *database;
NSString *updateString = nil;
NSString *trueStatement = @"true";
NavButtonAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
if (sqlite3_open([delegate.databasePath UTF8String], &database) == SQLITE_OK) {
updateString = @"UPDATE gtarestaurant set isFavourite = ? WHERE name = ?";
const char *sqlStatement = [updateString UTF8String];
sqlite3_stmt *compiledStatement;
if (sqlite3_prepare_v2(database, sqlStatement, -1, &compiledStatement, NULL) == SQLITE_OK) {
sqlite3_bind_text(compiledStatement, 1, [trueStatement UTF8String], -1, SQLITE_TRANSIENT);
sqlite3_bind_text(compiledStatement, 2, [rName UTF8String], -1, SQLITE_TRANSIENT);
while (sqlite3_step(compiledStatement) == SQLITE_ROW) {
}
sqlite3_finalize(compiledStatement);
}
sqlite3_close(database);
}
}
Can anyone see where I am going wrong? It appears that my problem is committing my changes to the database, after the user makes them