0

我是电话编程的新手。我想将数组计数和数组 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 值和数组计数值的正确方法是什么。谢谢阿斯拉姆

4

1 回答 1

0

不,CoreData 是一个 ORM。您不会写出查询(尤其是插入)。您应该可以在上下文中调用 save 。

查看 NSEntityDescription 中的 insertNewObjectForEntityName,然后保存在 ManagedObjectContext 上。

于 2013-03-20T14:41:24.780 回答