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;
size_t row;
}
+ rowWithResult: (PGResult*)result
row: (size_t)row;
- initWithResult: (PGResult*)result
row: (size_t)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
|