ObjPgSQL  PGResultRow.h at [8679c61b2c]

File src/PGResultRow.h artifact f714b4a0e3 part of check-in 8679c61b2c


#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