Differences From Artifact [94b4feb125]:
- File src/SL3PreparedStatement.m — part of check-in [7a52167702] at 2020-10-01 23:53:00 on branch trunk — SL3PreparedStatement: Add -[row{Array,Dictionary}] (user: js, size: 6700) [annotate] [blame] [check-ins using]
To Artifact [68afbf8877]:
- File src/SL3PreparedStatement.m — part of check-in [74061183c3] at 2021-04-28 22:54:37 on branch trunk — Adjust to ObjFW changes (user: js, size: 6699) [annotate] [blame] [check-ins using]
︙ | |||
191 192 193 194 195 196 197 | 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | - + | case SQLITE_BLOB: return [OFData dataWithItems: sqlite3_column_blob(_stmt, column) count: sqlite3_column_bytes(_stmt, column)]; case SQLITE_NULL: return [OFNull null]; default: |
︙ |