SQLite データベース (fmdb を使用) に 10k 行を追加しようとしていますが、1000 行で書き込みが停止します。そして、エラーや警告はありません。私のコード:
NSString *queryString = [NSString stringWithFormat:@"insert into histories (storyid, text, date, storyurl) values (%li, ?, ?, ?)",history.storyIndex];
if ([self.db open]) {
if([self.db executeUpdate:queryString, history.storyText, history.storyDate, history.storyUrl]) {
NSLog(@"history added");
}
}
助言がありますか?