I am trying to delete multiple tables in a single operation from sqlite. I tried separating it by semicolon but it didn't work out as expected. Here is my current code :
NSString *query = @"DELETE from Friends;DELETE from Stream;DELETE from Version";
I need some guidance on what could the problem be here, or if I am missing something.