Index: src/SL3PreparedStatement.h ================================================================== --- src/SL3PreparedStatement.h +++ src/SL3PreparedStatement.h @@ -35,19 +35,21 @@ #endif SL3Connection *_connection; sqlite3_stmt *_stmt; } +@property (readonly, nonatomic) OFArray *rowArray; +@property (readonly, nonatomic) + OFDictionary OF_GENERIC(OFString *, id) *rowDictionary; + - (void)bindWithArray: (OFArray *)array; - (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; -- (OFArray *)rowArray; -- (OFDictionary OF_GENERIC(OFString *, id) *)rowDictionary; - (void)reset; @end OF_ASSUME_NONNULL_END