diff options
Diffstat (limited to 'Frameworks/PostgresKit/Source/FLXPostgresResult.h')
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresResult.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresResult.h b/Frameworks/PostgresKit/Source/FLXPostgresResult.h index 0e941a7a..b779e1b1 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresResult.h +++ b/Frameworks/PostgresKit/Source/FLXPostgresResult.h @@ -30,9 +30,10 @@ void **_typeHandlers; unsigned long long _row; - unsigned int _numberOfFields; unsigned long long _numberOfRows; + NSUInteger _numberOfFields; + NSString **_fields; NSStringEncoding _stringEncoding; @@ -43,7 +44,7 @@ /** * @property numberOfFields The number of fields this result has. */ -@property (readonly) unsigned int numberOfFields; +@property (readonly) NSUInteger numberOfFields; /** * @property numberOfRows The number or rows this result has. @@ -57,7 +58,7 @@ - (id)initWithResult:(void *)result connection:(FLXPostgresConnection *)connection; -- (unsigned int)numberOfFields; +- (NSUInteger)numberOfFields; - (void)seekToRow:(unsigned long long)row; |