ObjPgSQL  Artifact [63d46bca55]

Artifact 63d46bca550b2b7b9f24a8fcdeca391327fc3a04239c8e01061a5ec1ed9e27be:


#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