diff options
4 files changed, 48 insertions, 0 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresTypeDateTimeHandler.h b/Frameworks/PostgresKit/Source/FLXPostgresTypeDateTimeHandler.h index f072cf8a..2aa084c2 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresTypeDateTimeHandler.h +++ b/Frameworks/PostgresKit/Source/FLXPostgresTypeDateTimeHandler.h @@ -32,12 +32,24 @@ FLXPostgresOid _type; } +/** + * @property The row within the result the handler is being queried about. + */ @property (readwrite, assign) NSUInteger row; +/** + * @property The column within the result the handler is being queried about. + */ @property (readwrite, assign) NSUInteger column; +/** + * @property The type of data within the result the handler is being queried about. + */ @property (readwrite, assign) FLXPostgresOid type; +/** + * @property The result the handler is being asked to operate on. + */ @property (readwrite, assign) const PGresult *result; @end diff --git a/Frameworks/PostgresKit/Source/FLXPostgresTypeHandlerProtocol.h b/Frameworks/PostgresKit/Source/FLXPostgresTypeHandlerProtocol.h index 8b22c158..c750ba3d 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresTypeHandlerProtocol.h +++ b/Frameworks/PostgresKit/Source/FLXPostgresTypeHandlerProtocol.h @@ -27,12 +27,24 @@ */ @protocol FLXPostgresTypeHandlerProtocol +/** + * @property The row within the result the handler is being queried about. + */ @property (readwrite, assign) NSUInteger row; +/** + * @property The column within the result the handler is being queried about. + */ @property (readwrite, assign) NSUInteger column; +/** + * @property The type of data within the result the handler is being queried about. + */ @property (readwrite, assign) FLXPostgresOid type; +/** + * @property The result the handler is being asked to operate on. + */ @property (readwrite, assign) const PGresult *result; /** diff --git a/Frameworks/PostgresKit/Source/FLXPostgresTypeNumberHandler.h b/Frameworks/PostgresKit/Source/FLXPostgresTypeNumberHandler.h index 3f5aa78d..73cc9d1e 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresTypeNumberHandler.h +++ b/Frameworks/PostgresKit/Source/FLXPostgresTypeNumberHandler.h @@ -32,12 +32,24 @@ FLXPostgresOid _type; } +/** + * @property The row within the result the handler is being queried about. + */ @property (readwrite, assign) NSUInteger row; +/** + * @property The column within the result the handler is being queried about. + */ @property (readwrite, assign) NSUInteger column; +/** + * @property The type of data within the result the handler is being queried about. + */ @property (readwrite, assign) FLXPostgresOid type; +/** + * @property The result the handler is being asked to operate on. + */ @property (readwrite, assign) const PGresult *result; @end diff --git a/Frameworks/PostgresKit/Source/FLXPostgresTypeStringHandler.h b/Frameworks/PostgresKit/Source/FLXPostgresTypeStringHandler.h index 27b1c8c2..9b0e8d8b 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresTypeStringHandler.h +++ b/Frameworks/PostgresKit/Source/FLXPostgresTypeStringHandler.h @@ -32,12 +32,24 @@ FLXPostgresOid _type; } +/** + * @property The row within the result the handler is being queried about. + */ @property (readwrite, assign) NSUInteger row; +/** + * @property The column within the result the handler is being queried about. + */ @property (readwrite, assign) NSUInteger column; +/** + * @property The type of data within the result the handler is being queried about. + */ @property (readwrite, assign) FLXPostgresOid type; +/** + * @property The result the handler is being asked to operate on. + */ @property (readwrite, assign) const PGresult *result; @end |