aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Source/FLXPostgresResult.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-09-08 09:44:25 +0000
committerstuconnolly <stuart02@gmail.com>2012-09-08 09:44:25 +0000
commit66f9f09721647b635e4095c865653b8008c9552e (patch)
tree549d2984e239533df909225c7c454bee1cc3319b /Frameworks/PostgresKit/Source/FLXPostgresResult.h
parent3164c029b4c87cf65a8a7f21a85e95b960806b59 (diff)
downloadsequelpro-66f9f09721647b635e4095c865653b8008c9552e.tar.gz
sequelpro-66f9f09721647b635e4095c865653b8008c9552e.tar.bz2
sequelpro-66f9f09721647b635e4095c865653b8008c9552e.zip
Revert logging changes.
Diffstat (limited to 'Frameworks/PostgresKit/Source/FLXPostgresResult.h')
-rw-r--r--Frameworks/PostgresKit/Source/FLXPostgresResult.h7
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;