ObjPgSQL  Diff

Differences From Artifact [2046b4f6dd]:

To Artifact [62553c259f]:


18
19
20
21
22
23
24
25

26
27
28

29
30
31
32
33
34
35

36
37
38
39
40
41
18
19
20
21
22
23
24

25
26
27

28
29
30
31
32
33
34

35
36
37
38
39
40
41







-
+


-
+






-
+







#include <libpq-fe.h>

#import <ObjFW/ObjFW.h>

OF_ASSUME_NONNULL_BEGIN

@class PGResultRow;
@class PGSQLResultRow;

/**
 * @class PGResult PGResult.h ObjPgSQL/ObjPgSQL.h
 * @class PGSQLResult PGSQLResult.h ObjPgSQL/ObjPgSQL.h
 *
 * @brief A PostgreSQL result.
 *
 * This is a regular OFArray, where each entry in the array represents a result
 * row.
 */
@interface PGResult: OFArray OF_GENERIC(PGResultRow *)
@interface PGSQLResult: OFArray OF_GENERIC(PGSQLResultRow *)
{
	PGresult *_result;
}
@end

OF_ASSUME_NONNULL_END