Add documentation

FossilOrigin-Name: e4c8de38e0a1c749ea0f05f594091f16d659a4d2e329672fb7208a4ff36a77cb
This commit is contained in:
Jonathan Schleifer 2024-08-11 17:45:27 +00:00
parent 7a728f9bd3
commit 50b4eaa1ed
12 changed files with 185 additions and 21 deletions

View file

@ -24,6 +24,14 @@ OF_ASSUME_NONNULL_BEGIN
@class PGResultRow;
/**
* @class PGResult PGResult.h ObjPgSQL/ObjPgSQL.h
*
* @brief A PostgreSQL result.
*
* This is a regular OFArray, where each entry in the array represents a result
* row.
*/
@interface PGResult: OFArray OF_GENERIC(PGResultRow *)
{
PGresult *_result;