0

Im noob in iphone and I have one question. how to add NSMutableArray objects in sqlite on any row of table.please explain me complete about sqlite and store data in it.

this is my code and I want store values in NSMutableArray (dic & dic2) in table sqlite

    NSDictionary * dic = [NSDictionary dictionaryWithObjectsAndKeys:@"john",@"boy",@"emma",@"girl",@"22",@"age", nil];
    NSDictionary * dic2 = [NSDictionary dictionaryWithObjectsAndKeys:@"harry",@"boy",@"shyla",@"girl",@"33",@"age", nil];
    NSMutableArray * array = [[NSMutableArray alloc]initWithObjects:dic,dic2, nil];
2
  • stackoverflow.com/questions/3005231/… Commented Apr 30, 2013 at 7:12
  • thanks my friend but I dont understand it. I want store NSDictionary (dic) in one row of table in sqlite Commented May 1, 2013 at 6:22

0

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.