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
19
20
21
22
|
#include <libpq-fe.h>
#import <ObjFW/ObjFW.h>
#import "PGResult.h"
OF_ASSUME_NONNULL_BEGIN
@interface PGResultRow: OFDictionary
{
PGResult *_result;
PGresult *_res;
int _row;
}
+ rowWithResult: (PGResult *)result
row: (int)row;
- initWithResult: (PGResult *)result
row: (int)row;
@end
OF_ASSUME_NONNULL_END
|