78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
- initWithResult: (PGResult *)result
row: (int)row
{
self = [super init];
_result = [result retain];
_res = [result PG_result];
_row = row;
return self;
}
- (void)dealloc
{
|
|
|
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
- initWithResult: (PGResult *)result
row: (int)row
{
self = [super init];
_result = [result retain];
_res = [result pg_result];
_row = row;
return self;
}
- (void)dealloc
{
|
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
objects[j++] = [OFString stringWithUTF8String:
PQfname(_res, state->state + i)];
}
state->state += count;
state->itemsPtr = objects;
state->mutationsPtr = (unsigned long*)self;
return j;
}
@end
@implementation PGResultRowEnumerator
- initWithResult: (PGResult *)result
row: (int)row
{
self = [super init];
_result = [result retain];
_res = [result PG_result];
_row = row;
_count = PQnfields(_res);
return self;
}
- (void)dealloc
|
|
|
|
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
objects[j++] = [OFString stringWithUTF8String:
PQfname(_res, state->state + i)];
}
state->state += count;
state->itemsPtr = objects;
state->mutationsPtr = (unsigned long *)self;
return j;
}
@end
@implementation PGResultRowEnumerator
- initWithResult: (PGResult *)result
row: (int)row
{
self = [super init];
_result = [result retain];
_res = [result pg_result];
_row = row;
_count = PQnfields(_res);
return self;
}
- (void)dealloc
|