ObjPgSQL  Artifact [f714b4a0e3]

Artifact f714b4a0e379abe66f8f38229098b007088285cbe752c33c77f32c2ccac01e45:


#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