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