ObjPgSQL  Diff

Differences From Artifact [91d3ffeec3]:

To Artifact [6294089c40]:


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






|






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