aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Source/FLXPostgresConnectionTypeHandling.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-09-06 11:00:21 +0000
committerstuconnolly <stuart02@gmail.com>2012-09-06 11:00:21 +0000
commit9b71e97f74c4d09a5fed11f28c084ee87fccf321 (patch)
treee3ebfd761819bf7d39df4087118461536731fe94 /Frameworks/PostgresKit/Source/FLXPostgresConnectionTypeHandling.m
parent71e2c109a958b6663192948298b60fdba869b93a (diff)
downloadsequelpro-9b71e97f74c4d09a5fed11f28c084ee87fccf321.tar.gz
sequelpro-9b71e97f74c4d09a5fed11f28c084ee87fccf321.tar.bz2
sequelpro-9b71e97f74c4d09a5fed11f28c084ee87fccf321.zip
Add date/time handling.
Diffstat (limited to 'Frameworks/PostgresKit/Source/FLXPostgresConnectionTypeHandling.m')
-rw-r--r--Frameworks/PostgresKit/Source/FLXPostgresConnectionTypeHandling.m4
1 files changed, 3 insertions, 1 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnectionTypeHandling.m b/Frameworks/PostgresKit/Source/FLXPostgresConnectionTypeHandling.m
index bd46e788..483519cf 100644
--- a/Frameworks/PostgresKit/Source/FLXPostgresConnectionTypeHandling.m
+++ b/Frameworks/PostgresKit/Source/FLXPostgresConnectionTypeHandling.m
@@ -22,6 +22,7 @@
#import "FLXPostgresConnectionTypeHandling.h"
#import "FLXPostgresTypeStringHandler.h"
#import "FLXPostgresTypeNumberHandler.h"
+#import "FLXPostgresTypeDateTimeHandler.h"
#import "FLXPostgresException.h"
@implementation FLXPostgresConnection (FLXPostgresConnectionTypeHandling)
@@ -38,7 +39,8 @@
}
[self registerTypeHandler:[FLXPostgresTypeStringHandler class]];
- [self registerTypeHandler:[FLXPostgresTypeNumberHandler class]];
+ [self registerTypeHandler:[FLXPostgresTypeNumberHandler class]];
+ [self registerTypeHandler:[FLXPostgresTypeDateTimeHandler class]];
}
/**