Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have data in a server that I want to store in my app when the app is loaded. I tried to do it with JSON and SQLite, but I can't succeed. Is there anyone who has an example of code to show me the full process of get the data by JSON, convert it to an array and then automatically save all data in SQLite table? Here is the code I already have. I succeed to get the json and to put it in the array, but I don't know how to make a loop that will put everything in a sqlite table. (The url is just for the example, I can't explore the real url)

- (void)viewDidLoad
{
    [super viewDidLoad];


    //Use json to get the data of the sensors
    NSURL *url = [[NSURL alloc] initWithString:@"http://zacandcatie.com/YouTube/json.php"];
                  NSError *error = nil;
                  NSStringEncoding encoding;
                  NSString *mySensors = [[NSString alloc] initWithContentsOfURL:url
                                                                   usedEncoding:&encoding
                                                                          error:&error];
       if ([mySensors length]==0){
        [mySensors release];
        return;
    }

SBJsonParser *parser = [[SBJsonParser alloc]init];
arrSensors = [[parser objectWithString:mySensors error:nil] copy];
[parser release];
NSLog(@"Imported Sensors: %@", arrSensors);
share|improve this question
3  
"I tried to do it with json and sqlit, but i can't succeed" - precisely? – H2CO3 Dec 2 '12 at 10:04

closed as not a real question by Abizern, Janak Nirmal, Mehul, benzado, Praveen Kumar Dec 3 '12 at 8:21

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

You have 2 options :

  1. In core data, you can store objects using the type "transformable". This way, you can store your parsed json (arrSensors) directly.
  2. Otherwise, store the json string itself, in core data without parsing it. And parse it whenever you want to retreive it.
share|improve this answer

Save that JSON as .plist file in the documents directory and reload it as a dictionary whenever required. I believe this will be much easier and all you need to take care is that all the keys have values in format supported by .plist. (NSNull is not supported by plists to give you heads up.)

share|improve this answer
Thanks for the answer but it is interactive data, it changes all the time so i will refresh the data each 15 minutes. – Yossi Dec 2 '12 at 11:29
you can overwrite the .plist every time you change the data... I am doing the same in one of my applications – Ankit Srivastava Dec 2 '12 at 11:41
What are the chances that you will send me an example of code that shows me how it works? – Yossi Dec 2 '12 at 14:01
If you can, my mail is yoshalevi@gmail.com – Yossi Dec 2 '12 at 14:01

Not the answer you're looking for? Browse other questions tagged or ask your own question.