In my iPAD Application, I have 6 UITableViews and to load data for those views, I call 6 different webservices. Each Table view has its own database table/entity.
My operation for each of the tableview is that I would call a webservice using NSURLConnection and then parse the resulting XML using NSXMLParser and persist the data into the SQLite database using
command.
I would like to know if there is a way I would be able to persist data into multiple tables in SQLite at the same time.
My operation for each of the tableview is that I would call a webservice using NSURLConnection and then parse the resulting XML using NSXMLParser and persist the data into the SQLite database using
Code:
[managedObjectContext save:&error];
I would like to know if there is a way I would be able to persist data into multiple tables in SQLite at the same time.