CPGconn.getResult

Prototype: PQgetResult Note: Even when PQresultStatus indicates a fatal error, PQgetResult should be called until it returns a null pointer to allow libpq to process the error information completely. Note: A null pointer is returned when the command is complete and t here will be no more results.

class CPGconn
shared(IPGresult)
getResult
nothrow
(
)
in { assert (conn !is null, "PGconn was finished!"); assert (PQgetResult !is null, "DerelictPQ isn't loaded!"); }

Meta