(lldb) po r
(FMResultSet *) $6 = 0x0000000101001620 <FMResultSet: 0x101001620>
(lldb) po *r
(FMResultSet) $7 = [no Objective-C description available]
(lldb) print r
(FMResultSet *) $8 = 0x0000000101001620
(lldb) print *r
(FMResultSet) $9 = {
(NSObject) NSObject = {
(Class) isa = FMResultSet
}
(FMDatabase *) parentDB = 0x000000010122ffb0
(FMStatement *) statement = 0x00000001010021d0
(NSString *) query = 0x00000001000fb378 @"SELECT sequence, revid, deleted FROM revs WHERE doc_id=? ORDER BY sequence DESC"
(NSMutableDictionary *) columnNameToIndexMap = 0x0000000000000000
(BOOL) columnNamesSetup = NO
}
In the emails in this thread, it seems like you're mixing up 'print' and 'po' — you do know they're different commands, right? You seem to treat them interchangeably. For instance here you refer to 'print' but the example you give clearly uses 'po'.