I have a problem with my App. In the update I'm testing I'm modifying the DB adding a column to a table. Everything works just fine in the simulator, but when I run the App in my iPhone, at the moment it reaches the query where the new column is, it completely skips the while(sqlite3_step(stmt) == SQLITE_ROW) and returns no rows to my tableview.
I want to check if the DB in my iPhone has been updated correctly but I don't know where to find it.