Differences From Artifact [be4fe62381]:
- File src/SL3PreparedStatement.h — part of check-in [4fc7a99ac9] at 2020-10-01 21:16:18 on branch trunk — Rename SL3Statement -> SL3PreparedStatement (user: js, size: 1558) [annotate] [blame] [check-ins using]
To Artifact [b2196c1017]:
- File src/SL3PreparedStatement.h — part of check-in [727a6838a5] at 2020-10-01 23:43:39 on branch trunk — Add support for retrieving columns (user: js, size: 1665) [annotate] [blame] [check-ins using]
︙ | |||
37 38 39 40 41 42 43 | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | + + + - + | sqlite3_stmt *_stmt; } - (void)bindWithArray: (OFArray *)array; - (void)bindWithDictionary: (OFDictionary OF_GENERIC(OFString *, id) *)dictionary; - (void)clearBindings; - (id)objectForColumn: (size_t)column; - (size_t)columnCount; - (OFString *)nameForColumn: (size_t)column; |