Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
FMDB でテーブルを更新しています。更新された行の総数を取得するにはどうすればよいですか。(実際には問題があります。そのテーブルにデータがなくても、更新クエリは「true」を返します。)
前もって感謝します。:)
あなたは探している:
- (int)changes;
次のように使用します。
FMDatabase *db = [FMDatabase databaseWithPath:@"store.db"]; if ([db executeUpdate:@"UPDATE xy SET ..."]) { NSLog(@"Did change %d rows", [db changes]); } else { // handle error }