我是手机编程的新手。我想在数据库中存储数组计数和数组objectAtindex值。但是它不是商店可以告诉我如何存储
NSLog(@"%@",[tapCollection1 objectAtIndex:i]);
NSLog(@"%i",[array11 count]);
NSString *insertSQL = [NSString stringWithFormat: @"insert into Taukyblauky(taukyid,blaukyid) values (\"%\",\"%i\")",[tapCollection1 objectAtIndex:i],[array11 count]];
插入[tapCollection1 objectAtIndex:i]和[array11 count]
的正确方法是什么 Inside that [tapCollection1 objectAtIndex:i] it contain some value like this 3.
Inside that [array11 count] it contain some value like this 2.
在数据库中插入objectAtindex值和数组计数值的正确方法是什么。 谢谢 阿斯拉姆
答案 0 :(得分:0)
不,CoreData是一个ORM。您不会写出查询(尤其是插入)。您应该能够在上下文中调用save。
查看NSEntityDescription中的insertNewObjectForEntityName,然后保存在ManagedObjectContext上。