Differences From Artifact [91d3ffeec3]:
- File PGResult.h — part of check-in [de46b0e10c] at 2012-10-03 13:20:06 on branch trunk — Initial import. (user: js, size: 212) [annotate] [blame] [check-ins using]
To Artifact [6294089c40]:
- File PGResult.h — part of check-in [8c8a431322] at 2013-02-13 23:40:59 on branch trunk — Prefix all ivars with an underscore. (user: js, size: 213) [annotate] [blame] [check-ins using]
- File src/PGResult.h — part of check-in [8679c61b2c] at 2014-07-18 23:35:18 on branch trunk — Add a proper build system (user: js, size: 213) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 | #include <libpq-fe.h> #import <ObjFW/ObjFW.h> @interface PGResult: OFArray { | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #include <libpq-fe.h> #import <ObjFW/ObjFW.h> @interface PGResult: OFArray { PGresult *_result; } + PG_resultWithResult: (PGresult*)result; - PG_initWithResult: (PGresult*)result; - (PGresult*)PG_result; @end |