diff options
author | stuconnolly <stuart02@gmail.com> | 2012-09-13 09:05:50 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-09-13 09:05:50 +0000 |
commit | 202413b252af301e314a097b3deda6ac1a592a2a (patch) | |
tree | 400a2ecc059498ed214394ee3b6b1fda8f5df099 /Frameworks/PostgresKit/Source | |
parent | cfb5c9e7128c451b71cdd0211d85831d8ff9f671 (diff) | |
download | sequelpro-202413b252af301e314a097b3deda6ac1a592a2a.tar.gz sequelpro-202413b252af301e314a097b3deda6ac1a592a2a.tar.bz2 sequelpro-202413b252af301e314a097b3deda6ac1a592a2a.zip |
Comments.
Diffstat (limited to 'Frameworks/PostgresKit/Source')
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 |