SL3PreparedStatement: Add -[row{Array,Dictionary}]

FossilOrigin-Name: 7a52167702278bdd7c5f3aac48771cba8ac5a77abfac4d1664b05a507fe8236e
This commit is contained in:
Jonathan Schleifer 2020-10-01 23:53:00 +00:00
parent 5967ebf3b7
commit 9f22b628f2
3 changed files with 53 additions and 15 deletions

View file

@ -41,10 +41,12 @@ OF_ASSUME_NONNULL_BEGIN
- (void)bindWithDictionary:
(OFDictionary OF_GENERIC(OFString *, id) *)dictionary;
- (void)clearBindings;
- (bool)step;
- (id)objectForColumn: (size_t)column;
- (size_t)columnCount;
- (OFString *)nameForColumn: (size_t)column;
- (bool)step;
- (OFArray *)rowArray;
- (OFDictionary OF_GENERIC(OFString *, id) *)rowDictionary;
- (void)reset;
@end