Differences From Artifact [95d2097d1f]:
- File src/PGResult.m — part of check-in [6417eb405d] at 2020-05-31 20:11:25 on branch trunk — Update URL and e-mail (user: js, size: 1878) [annotate] [blame] [check-ins using]
To Artifact [0b8c7e69a5]:
- File src/PGResult.m — part of check-in [0af9225d64] at 2021-04-29 22:36:08 on branch trunk — Adjust to ObjFW changes (user: js, size: 1872) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
57 58 59 60 61 62 63 | } - (id)objectAtIndex: (size_t)index { if (index > PQntuples(_result)) @throw [OFOutOfRangeException exception]; | | < | 57 58 59 60 61 62 63 64 65 66 | } - (id)objectAtIndex: (size_t)index { if (index > PQntuples(_result)) @throw [OFOutOfRangeException exception]; return [PGResultRow pg_rowWithResult: self row: (int)index]; } @end |