ObjPgSQL  Diff

Differences From Artifact [da0166d00f]:

To Artifact [f714b4a0e3]:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <libpq-fe.h>

#import <ObjFW/ObjFW.h>

#import "PGResult.h"

@interface PGResultRow: OFDictionary
{
	PGResult *result;
	PGresult *res;
	int row;
}

+ rowWithResult: (PGResult*)result
	    row: (int)row;
- initWithResult: (PGResult*)result
	     row: (int)row;
@end








|
|
|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <libpq-fe.h>

#import <ObjFW/ObjFW.h>

#import "PGResult.h"

@interface PGResultRow: OFDictionary
{
	PGResult *_result;
	PGresult *_res;
	int _row;
}

+ rowWithResult: (PGResult*)result
	    row: (int)row;
- initWithResult: (PGResult*)result
	     row: (int)row;
@end